mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
Defend against empty file pages in media dialog search
Empty file pages are returned as results in search but have no useful information, and, more importantly, no 'imageinfo' property. Make sure these are skipped by the provider. Bug: T89303 Change-Id: I3374f7373efc1f5751acb16819973594abf56a56
This commit is contained in:
parent
0d3bd68431
commit
65d0a9d7e7
|
@ -190,6 +190,14 @@ ve.dm.MWMediaResourceProvider.prototype.fetchAPIresults = function ( howMany ) {
|
|||
if ( raw ) {
|
||||
// Strip away the page ids
|
||||
for ( page in raw ) {
|
||||
if ( !raw[page].imageinfo ) {
|
||||
// The search may give us pages that belong to the File:
|
||||
// namespace but have no files in them, either because
|
||||
// they were deleted or imported wrongly, or just started
|
||||
// as pages. In that case, the response will not include
|
||||
// imageinfo. Skip those files.
|
||||
continue;
|
||||
}
|
||||
newObj = raw[page].imageinfo[0];
|
||||
newObj.title = raw[page].title;
|
||||
results.push( newObj );
|
||||
|
|
Loading…
Reference in a new issue