X-Git-Url: https://code.delx.au/bluplayer/blobdiff_plain/fad78222e09dfd589836dcffff7d30a26d07bfee..868b9817a05d10d05fdb97a382030ac8d3c6ff26:/bluplayer.py diff --git a/bluplayer.py b/bluplayer.py index ab10d99..9259b83 100755 --- a/bluplayer.py +++ b/bluplayer.py @@ -152,7 +152,9 @@ class MakeMkv(QObject): makemkvcon = MakeMkvCon(["stream", "disc:%s" % disc_number]) for key, line in makemkvcon: if key == "MSG" and line[0] == "4500": - url = "http://localhost:%s/" % line[6] + # Sometimes the port in field 6 is wrong + port = line[5].split(":")[1] + url = "http://localhost:%s/" % port self.load_titles(url) elif key == "MSG": self.status.emit(line[3])