Merge branch 'master' into linkerd-jaeger

This commit is contained in:
marcel-dempers 2021-04-21 08:11:53 +10:00
commit 5a934b7b66
2 changed files with 4 additions and 4 deletions

View File

@ -75,7 +75,7 @@
if (location.hostname == "localhost"){
playlistApiUrl = "http://localhost:81/"
} else {
playlistApiUrl = "http://" + location.hostname + "/api/playlists"
playlistApiUrl = "http://" + location.hostname + ":" + location.port + "/api/playlists"
}
var app = angular.module('videos', []);
@ -96,4 +96,4 @@
</script>
</body>
</html>
</html>

View File

@ -72,7 +72,7 @@
if (location.hostname == "localhost"){
playlistApiUrl = "http://localhost:81/"
} else {
playlistApiUrl = "http://" + location.hostname + "/api/playlists"
playlistApiUrl = "http://" + location.hostname + ":" + location.port + "/api/playlists"
}
var app = angular.module('videos', []);
@ -93,4 +93,4 @@
</script>
</body>
</html>
</html>