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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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() {};