Fix:Stream url format issues

This commit is contained in:
advplyr
2022-02-22 19:02:01 -06:00
parent 74d5174cfc
commit d2c6f1bab1
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -14,6 +14,6 @@ export default class AudioTrack {
if (process.env.NODE_ENV === 'development') {
return `${process.env.serverUrl}${this.contentUrl}`
}
return `${window.location.origin}/${this.contentUrl}`
return `${window.location.origin}${this.contentUrl}`
}
}