Ver Fonte

fix my own mistake - 1

Front há 3 anos atrás
pai
commit
eb362ab17b
1 ficheiros alterados com 4 adições e 2 exclusões
  1. 4 2
      Extensions/UserScript/Return Youtube Dislike.user.js

+ 4 - 2
Extensions/UserScript/Return Youtube Dislike.user.js

@@ -19,10 +19,12 @@ function cLog(text, subtext = '') {
   console.log(`[Return Youtube Dislikes] ${text} ${subtext}`);
 }
 
-function doXHR(opts) {
-  if (typeof GM_xmlhttpRequest === 'function' || typeof GM.xmlHttpRequest === 'function') {
+  if (typeof GM_xmlhttpRequest === 'function') {
     return GM_xmlhttpRequest(opts);
   }
+  if (typeof GM.xmlHttpRequest === 'function') {
+    return GM.xmlHttpRequest(opts);
+  }
 
   console.warn('Unable to detect UserScript plugin, falling back to native XHR.');