Don't fire 'itunes' event when 'itunes-np' listener is present

Remove `uploadnow` variable as it is no longer needed
This commit is contained in:
kPherox 2019-03-21 16:00:15 +09:00
parent cdc6840808
commit e44014a1a9
No known key found for this signature in database
GPG Key ID: C04751C2BFA2F62D
2 changed files with 6 additions and 6 deletions

View File

@ -156,7 +156,6 @@ function media(b64, type, no) {
Materialize.toast(lang.lang_postimg_aftupload, 1000);
$("#imgup").text("");
$("#imgsel").show();
uploadnow=false;
localStorage.removeItem("image");
}
}

View File

@ -63,7 +63,6 @@ function spotifyFlagSave(){
Materialize.toast(lang.lang_spotify_imgno, 3000);
}
}
var uploadnow=false;
function nowplaying(mode){
if(mode=="spotify"){
var start = "https://thedesk.top/now-playing?at="+localStorage.getItem("spotify")+"&rt="+localStorage.getItem("spotify-refresh");
@ -124,6 +123,10 @@ function nowplaying(mode){
}else if(mode=="itunes"){
var electron = require("electron");
var ipc = electron.ipcRenderer;
if (ipc.listenerCount('itunes-np') > 0) {
return false;
}
ipc.send('itunes', "");
ipc.once('itunes-np', function (event, arg) {
console.log(arg);
@ -135,13 +138,11 @@ function nowplaying(mode){
var remote=electron.remote;
var platform=remote.process.platform;
if(platform=="win32"){
if(!uploadnow && flag && arg.path){
uploadnow=true;
if(flag && arg.path){
media(arg.path,"image/png","new");
}
}else if(platform=="darwin"){
if(!uploadnow && flag && arg.artworks[0]){
uploadnow=true;
if(flag && arg.artworks[0]){
ipc.send('bmp-image', [arg.artworks[0].path,0]);
}
}