removed additional slash from the socket.io path

This commit is contained in:
Leon Kiefer
2020-02-19 20:58:58 +01:00
committed by GitHub
parent 7b56817ae6
commit 6aeec81072

View File

@@ -9,7 +9,7 @@ var MMSocket = function(moduleName) {
// Private Methods
self.socket = io("/" + self.moduleName, {
path: window.location.pathname + "/socket.io"
path: window.location.pathname + "socket.io"
});
var notificationCallback = function() {};