File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -305,7 +305,12 @@ export default class CustomSortPlugin
305305 this . customSortAppliedAtLeastOnce = false
306306 fileExplorer . view . requestSort ( ) ;
307307 } else {
308- this . showNotice ( 'Custom sort File Explorer view problem. See console for detailed message.' ) ;
308+ if ( Platform . isDesktop ) {
309+ this . showNotice ( 'Custom sort File Explorer view problem. See console for detailed message.' )
310+ } else { // No console access on mobile
311+ this . showNotice ( `Custom sort File Explorer view problem - is it visible?`
312+ + ` Can't apply custom sorting when the File Explorer was not displayed at least once.` )
313+ }
309314 setIcon ( this . ribbonIconEl , ICON_SORT_SUSPENDED_GENERAL_ERROR )
310315 this . settings . suspended = true
311316 this . saveSettings ( )
You can’t perform that action at this time.
0 commit comments