Skip to content
This repository has been archived by the owner on Aug 3, 2022. It is now read-only.

Commit

Permalink
Critical malformed url bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiiks committed Nov 30, 2015
1 parent 4c62223 commit 4d16b9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/BetterDiscord.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 4d16b9f

Please sign in to comment.