Skip to content
This repository has been archived by the owner on Oct 27, 2021. It is now read-only.

Commit

Permalink
Small Security Fixes - 1.0.42
Browse files Browse the repository at this point in the history
  • Loading branch information
Quacky2200 committed Apr 21, 2017
1 parent 9034455 commit b325d4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ An Electron wrapper of Spotify Web Player to increase desktop integration for a
* Media Keys
* Mix-&-Match tray icons to your DE/Icon preferences

##Screenshots
## Screenshots
![Tray Icon](https://cloud.githubusercontent.com/assets/4623599/17799675/63a4c57e-65d4-11e6-8363-30a41ed7f67e.png)
![Controls in the Ubuntu Sound Menu](https://cloud.githubusercontent.com/assets/4623599/18899621/44c10b18-8532-11e6-9783-26756b511a6d.png)
![Notifications](https://cloud.githubusercontent.com/assets/4623599/18899796/8c8e62d2-8533-11e6-831a-38fae1b627ba.png)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "spotifywebplayer",
"productName": "Spotify Web Player for Linux",
"version": "1.0.40",
"version": "1.0.42",
"description": "An Electron wrapper of Spotify Web Player to increase desktop integration for a stable Spotify Player for Linux replacement",
"main": "main.js",
"postinstall": "install-app-deps",
Expand Down
2 changes: 1 addition & 1 deletion windows/spotify/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Spotify extends BrowserWindow{
if(app.settings.StartHidden) this.minimize();
});
var url = (app.settings.lastURL && !!~app.settings.lastURL.indexOf('play.spotify.com') ? app.settings.lastURL : app.host);
this.loadURL(url);
this.loadURL(url, {userAgent: "Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko"});
this.on('focus', () => shortcuts.toggle(true));
this.on('blur', () => shortcuts.toggle(false));
}
Expand Down

0 comments on commit b325d4c

Please sign in to comment.