update mastofe paths (#95)
[akkoma] / lib / pleroma / web / admin_api / controllers / frontend_controller.ex
index 722f51bd2e119183527ba053775db91ffd13b4fd..442e6a5a00b9fabdf2c1bf88ad43648b012444fa 100644 (file)
@@ -35,6 +35,12 @@ defmodule Pleroma.Web.AdminAPI.FrontendController do
   end
 
   defp installed do
-    File.ls!(Pleroma.Frontend.dir())
+    frontend_directory = Pleroma.Frontend.dir()
+
+    if File.exists?(frontend_directory) do
+      File.ls!(frontend_directory)
+    else
+      []
+    end
   end
 end