realtime.ts: Fix history import

Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
David Mehren 2020-04-12 17:41:18 +02:00
parent 038db39c0e
commit 943ddc4058
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB

View file

@ -1,7 +1,7 @@
import { Author, Note, Revision, User } from './models' import { Author, Note, Revision, User } from './models'
import ot from './ot' import ot from './ot'
import history from './history' import { History } from './history'
import { logger } from './logger' import { logger } from './logger'
import { config } from './config' import { config } from './config'
import moment from 'moment' import moment from 'moment'
@ -99,7 +99,7 @@ function finishUpdateNote (note, _note, callback) {
function updateHistory (userId, note, time?) { function updateHistory (userId, note, time?) {
const noteId = note.alias ? note.alias : Note.encodeNoteId(note.id) const noteId = note.alias ? note.alias : Note.encodeNoteId(note.id)
if (note.server) history.updateHistory(userId, noteId, note.server.document, time) if (note.server) History.updateHistory(userId, noteId, note.server.document, time)
} }
function updateNote (note, callback) { function updateNote (note, callback) {