We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60d22ed commit 027ea78Copy full SHA for 027ea78
src/models/eventsFactory.js
@@ -457,7 +457,7 @@ class EventsFactory extends Factory {
457
async getEventRepetition(repetitionId) {
458
return this.getCollection(this.TYPES.REPETITIONS)
459
.findOne({
460
- _id: new ObjectID(repetitionId),
+ _id: ObjectID(repetitionId),
461
});
462
}
463
src/typeDefs/event.ts
@@ -260,7 +260,6 @@ type Repetition {
260
"""
261
delta: String
262
263
-
264
265
Event timestamp
266
0 commit comments