From c44ddebd88d5a01fb7915d7a4fd29e87b6c27410 Mon Sep 17 00:00:00 2001 From: maikirakiwi Date: Thu, 7 Jul 2022 18:43:39 -0700 Subject: [PATCH] fix mmx translation --- src/renderer/main/vueapp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/main/vueapp.js b/src/renderer/main/vueapp.js index 269e3ee0..daae563e 100644 --- a/src/renderer/main/vueapp.js +++ b/src/renderer/main/vueapp.js @@ -3173,7 +3173,6 @@ const app = new Vue({ let url2 = "https://api.cider.sh/v1/lyrics?" + "mode=2" + "&richsyncQuery=" + richsyncQuery + "&track=" + track + "&artist=" + artist + "&songID=" + itunesid + "&source=mxm" + "&lang=" + lang + "&time=" + time; let req2 = new XMLHttpRequest(); req2.overrideMimeType("application/json"); - req2.open('POST', url2, true); req2.onload = function () { try { let jsonResponse2 = JSON.parse(this.responseText); @@ -3205,6 +3204,7 @@ const app = new Vue({ } catch (e) { } } + req2.open('POST', url2, true); req2.send(); }