Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ class PathContextMenuItem extends ContextMenuItem {
_openContainingFolderViaMimeApp() {
let app = Gio.AppInfo.get_default_for_type("inode/directory", true);
if (app === null) {
log.logError(`Could not open containing folder via MIME app: No associated file manager found`);
global.logError("Could not open containing folder via MIME app: No associated file manager found");
return;
}
let file = Gio.file_new_for_uri(this._button.uri);
Expand Down
Loading