修复播放列表在Linux下路径显示有问题的BUG
This commit is contained in:
parent
fa2f8c76cf
commit
1b31a87a91
|
@ -171,24 +171,22 @@ export default defineComponent({
|
|||
}
|
||||
} catch {}*/
|
||||
|
||||
if (
|
||||
(GlobalData.getInstance().applicationConfig?.runtime_os ??
|
||||
"UNKNOW") == "WINDOWS"
|
||||
) {
|
||||
let temp_str = decodeURI(new URL(item).pathname)
|
||||
.substr(1)
|
||||
.replace(/\\/g, "/");
|
||||
if (temp_str.startsWith(prefix)) {
|
||||
temp_str = temp_str.substr(prefix.length + 1);
|
||||
}
|
||||
play_list.value.push(temp_str);
|
||||
} else {
|
||||
console.log(prefix);
|
||||
let temp_str = decodeURI(new URL(item).pathname).replace(
|
||||
/\\/g,
|
||||
"/"
|
||||
);
|
||||
play_list.value.push(temp_str);
|
||||
if (
|
||||
(GlobalData.getInstance().applicationConfig?.runtime_os ??
|
||||
"UNKNOW") == "WINDOWS"
|
||||
) {
|
||||
temp_str = temp_str.substr(1);
|
||||
}
|
||||
|
||||
if (temp_str.startsWith(prefix)) {
|
||||
temp_str = temp_str.substr(prefix.length + 1);
|
||||
}
|
||||
play_list.value.push(temp_str);
|
||||
} catch (e) {
|
||||
console.warn(e);
|
||||
}
|
||||
|
@ -267,9 +265,15 @@ export default defineComponent({
|
|||
const temp =
|
||||
GlobalData.getInstance().applicationConfig
|
||||
?.application_data_dir ?? "";
|
||||
console.log(temp);
|
||||
let str = "";
|
||||
for (const item of play_list.value) {
|
||||
try {
|
||||
if (
|
||||
(GlobalData.getInstance().applicationConfig?.runtime_os ??
|
||||
"UNKNOW") == "WINDOWS"
|
||||
) {
|
||||
/** windows */
|
||||
if (item.startsWith("/")) {
|
||||
str += item + ";";
|
||||
} else if (item[1] == ":") {
|
||||
|
@ -278,6 +282,10 @@ export default defineComponent({
|
|||
} else {
|
||||
str += new URL(temp + "/" + item).toString() + ";";
|
||||
}
|
||||
} else {
|
||||
/** linux */
|
||||
str += item + ";";
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue