diff --git a/back/services/subscription.ts b/back/services/subscription.ts index d93a6007..adc74438 100644 --- a/back/services/subscription.ts +++ b/back/services/subscription.ts @@ -446,7 +446,7 @@ export default class SubscriptionService { public async log(id: number) { const doc = await this.getDb({ id }); - if (!doc) { + if (!doc || !doc.log_path) { return ''; }