move libs back to original location

This commit is contained in:
Nariman Jelveh
2025-08-03 17:21:13 -07:00
parent 8f18a841b3
commit 12f574ed70
5 changed files with 0 additions and 2 deletions
-2
View File
@@ -49,7 +49,6 @@ export class ExecService extends Service {
// This method is exposed to apps via IPCService.
async launchApp ({ app_name, args, pseudonym, file_paths }, { ipc_context, msg_id } = {}) {
console.log('launchApp', { app_name, args, pseudonym, file_paths });
const app = ipc_context?.caller?.app;
const process = ipc_context?.caller?.process;
@@ -85,7 +84,6 @@ export class ExecService extends Service {
// Check if file_paths are provided and caller has godmode permissions
if (file_paths && Array.isArray(file_paths) && file_paths.length > 0 && process) {
console.log('file_paths', file_paths);
try {
// Get caller app info to check godmode status
const caller_app_name = process.name;