Fix fetch article issue

+ npm error
This commit is contained in:
myrmidex 2025-08-11 22:10:40 +02:00
parent 4af7b8a38c
commit 997646be35
2 changed files with 2 additions and 1 deletions

View file

@ -182,7 +182,7 @@
'defaults' => [ 'defaults' => [
'supervisor-1' => [ 'supervisor-1' => [
'connection' => 'redis', 'connection' => 'redis',
'queue' => ['default', 'lemmy-posts', 'lemmy-publish'], 'queue' => ['default', 'lemmy-posts', 'lemmy-publish', 'feed-discovery'],
'balance' => 'auto', 'balance' => 'auto',
'autoScalingStrategy' => 'time', 'autoScalingStrategy' => 'time',
'maxProcesses' => 1, 'maxProcesses' => 1,

View file

@ -92,6 +92,7 @@ export interface PlatformChannel {
is_active: boolean; is_active: boolean;
created_at: string; created_at: string;
updated_at: string; updated_at: string;
platform_instance?: PlatformInstance;
platform_accounts?: PlatformAccount[]; platform_accounts?: PlatformAccount[];
} }