Skip to content

Commit 78fe82e

Browse files
authored
fix(backend): JSON response syntax fix (libnare#4)
....F
1 parent 2d8560a commit 78fe82e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/backend/src/server/WellKnownServerService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export class WellKnownServerService {
103103
}
104104

105105
reply.header('Content-Type', 'application/json');
106-
return {
106+
return [{
107107
relation: ['delegate_permission/common.handle_all_urls'],
108108
target: {
109109
namespace: 'android_app',
@@ -113,7 +113,7 @@ export class WellKnownServerService {
113113
'96:E2:C0:89:02:EA:C6:23:20:A9:6E:6A:1E:42:1B:47:DF:AF:A6:16:D0:D2:49:62:C6:38:35:4D:2E:78:9C:1B',
114114
],
115115
},
116-
};
116+
}];
117117
});
118118

119119
/* TODO

0 commit comments

Comments
 (0)