We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef413ec commit 2136dd3Copy full SHA for 2136dd3
src/LauncherManager.vala
@@ -70,6 +70,10 @@
70
var file = (File) drop_target_file.get_value ().get_object ();
71
var app_info = new DesktopAppInfo.from_filename (file.get_path ());
72
73
+ if (app_info == null) {
74
+ return;
75
+ }
76
+
77
if (app_info.get_id () in id_to_app) {
78
id_to_app[app_info.get_id ()].pinned = true;
79
drop_target_file.reject ();
0 commit comments