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 046ef3c commit 925ebd5Copy full SHA for 925ebd5
src/backend/src/services/AppIconService.js
@@ -108,12 +108,14 @@ class AppIconService extends BaseService {
108
.png()
109
.toBuffer();
110
111
+ const sys_actor = await svc_su.get_system_actor();
112
const hl_write = new HLWrite();
113
await hl_write.run({
114
destination_or_parent: dir_app_icons,
115
specified_name: filename,
116
overwrite: true,
- user: await svc_su.get_system_actor(),
117
+ actor: sys_actor,
118
+ user: sys_actor.type.user,
119
no_thumbnail: true,
120
file: {
121
size: output.length,
0 commit comments