Skip to content

Commit 7a318e8

Browse files
fix incorrect apikey config path
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 4bc366d commit 7a318e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/unraid-api-plugin-connect/src/mothership/connection.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class MothershipConnectionService {
6565
unraidVersion: this.unraidVersion,
6666
flashGuid: this.flashGuid,
6767
apiVersion: this.apiVersion,
68-
apiKey: this.configService.get<MyServersConfig>('connect')?.apikey,
68+
apiKey: this.configService.get<MyServersConfig>('connect.config')?.apikey,
6969
};
7070
const isLoaded = Object.values(state).every(Boolean);
7171
return isLoaded ? { state: state as IdentityState, isLoaded: true } : { state, isLoaded: false };

0 commit comments

Comments
 (0)