fix comparison (thanks linter)

This commit is contained in:
dakkar 2024-08-06 19:51:11 +01:00
parent e9255d45f8
commit 4c409dd6c6
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ export class CustomEmojiService implements OnApplicationShutdown {
if (data.driveFile != null) {
const file = await this.driveFilesRepository.findOneBy({ url: emoji.originalUrl, userHost: emoji.host ? emoji.host : IsNull() });
if (file && file.id != data.driveFile.id) {
if (file && file.id !== data.driveFile.id) {
await this.driveService.deleteFile(file, false, moderator ? moderator : undefined);
}
}