fix: app pseudonym in wrong conditional block

This commit is contained in:
KernelDeimos 2024-09-30 20:38:25 -04:00
parent 4febd81169
commit 9985996686

View File

@ -139,7 +139,6 @@ const launch_app = async (options)=>{
is_dir: true,
app: 'explorer',
...window_options,
...(options.pseudonym ? {pseudonym: options.pseudonym} : {}),
is_maximized: options.maximized,
});
}
@ -320,6 +319,7 @@ const launch_app = async (options)=>{
is_visible: ! app_info.background,
is_maximized: options.maximized,
is_fullpage: options.is_fullpage,
...(options.pseudonym ? {pseudonym: options.pseudonym} : {}),
...window_options,
is_resizable: window_resizable,
has_head: ! hide_titlebar,