Skip to content

Commit

Permalink
AppDirs: Fix loading plugins (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano authored Jun 30, 2024
1 parent dd125b9 commit cc5af83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AppDirs.vala
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class AppDirs {
public static File get_lib_dir () {
File? install_dir = get_install_dir ();

return (install_dir != null) ? install_dir.get_child (Resources.LIB).get_child (PROJECT_NAME)
return (install_dir != null) ? File.new_for_path (Resources.LIB).get_child (PROJECT_NAME)
: get_exec_dir ();
}

Expand Down

0 comments on commit cc5af83

Please sign in to comment.