https://bugzilla.wikimedia.org/show_bug.cgi?id=62243
--- Comment #3 from Tisza Gergő <[email protected]> --- Our error reporting kind of sucks ( https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/268 is supposed to solve that but it is not deployed yet) so probably one of the metadata promises reject (could be anything, not just imageinfo). For reference, here is a quick debug code which adds functionality from #268 on the fly: for (key in mw.mediaViewer) { if (key.match(/Provider$/)) { (function ( provider ) { var oldGet = provider.get; provider.get = function () { return oldGet.apply( provider, arguments ).fail( function ( error ) { console.log( provider.constructor.name + ' failed: ', error ); } ); }; } ( mw.mediaViewer[key] )); } } According to that, the problem is with userinfo. -- 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
