fix(web) add disable property to generated shared link (#1287)

This commit is contained in:
Alex 2023-01-10 10:34:16 -06:00 committed by GitHub
parent acffabf9de
commit 2ffb7cab2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -48,7 +48,6 @@ export class ShareCore {
async getSharedLinkById(id: string): Promise<SharedLinkEntity> {
const link = await this.sharedLinkRepository.getById(id);
console.log(link);
if (!link) {
throw new BadRequestException('Shared link not found');
}