fix comparison (thanks linter)
This commit is contained in:
parent
03d9288f44
commit
9672f0b48e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue