mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 06:43:08 +02:00
chore: remove an extra equal sign
This commit is contained in:
parent
c4351c469a
commit
4a3c813d3e
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ export class NoteEntityService implements OnModuleInit {
|
|||
|
||||
const meId = me ? me.id : null;
|
||||
const note = typeof src === 'object' ? src : await this.notesRepository.findOneOrFail({ where: { id: src }, relations: ['user'] });
|
||||
const host = note.userHost === null ? this.config.host : note.userHost;
|
||||
const host = note.userHost == null ? this.config.host : note.userHost;
|
||||
|
||||
let text = note.text;
|
||||
|
||||
|
|
Loading…
Reference in a new issue