Critical malformed url bug fix

This commit is contained in:
Jiiks 2015-12-01 00:57:59 +02:00
parent 4c622234ee
commit 4d16b9fd89
1 changed files with 2 additions and 2 deletions

View File

@ -238,7 +238,7 @@ BetterDiscord.prototype.ipcAsyncMessage = function(event, arg) {
'type': 'css',
'resource': 'Main CSS',
'domain': _updater.CDN,
'url': '//' + _updater.CDN + '//' + _repo + '/BetterDiscordApp/' + _hash + '/css/main.min.css',
'url': '//' + _updater.CDN + '/' + _repo + '/BetterDiscordApp/' + _hash + '/css/main.min.css',
'localurl': '',
'message': 'load-mainJS',
'cacheable': false,
@ -248,7 +248,7 @@ BetterDiscord.prototype.ipcAsyncMessage = function(event, arg) {
'type': 'javascript',
'resource': 'Main JS',
'domain': _updater.CDN,
'url': '//' + _updater.CDN + '//' + _repo + '/BetterDiscordApp/' + _hash + '/js/main.min.js',
'url': '//' + _updater.CDN + '/' + _repo + '/BetterDiscordApp/' + _hash + '/js/main.min.js',
'localurl': '',
'message': 'load-publicServers',
'cacheable': false,