https://bugzilla.wikimedia.org/show_bug.cgi?id=62019
--- Comment #1 from Tisza Gergő <[email protected]> --- At first glance seems like a promise rejection (we should have better logging of those). I tried to check with the code below whether any provider rejects, and didn't find anything, but maybe I messed up the code: $.each( mw.mmv.provider, function ( providerName, provider ) { var oldGet = provider.get; provider.get = function () { oldGet.apply( provider, arguments ).then( null, function () { var d = $.Deferred(); console.log( providerName + ' rejected!', arguments ); return d.reject.apply( d, arguments ); } ); }; } ); -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
