This commit is contained in:
Peter Maquiran
2024-09-18 12:32:31 +01:00
parent 01c2f5efb5
commit 8d332f73a8
6 changed files with 59 additions and 30 deletions
+2 -2
View File
@@ -85,7 +85,7 @@ export class RoomEntity extends BaseEntity<RoomEntity>(RoomEntitySchema) implem
if(receiver) {
return receiver.user.wxUserId.toString()
} else {
Logger.error('cant get receiver Id from Room.getReceiverId '+ this.id, this)
// Logger.error('cant get receiver Id from Room.getReceiverId '+ this.id, this)
return undefined
}
@@ -102,7 +102,7 @@ export class RoomEntity extends BaseEntity<RoomEntity>(RoomEntitySchema) implem
if(receiverId) {
this.receiverId = parseInt(receiverId)
} else {
Logger.error('cant set receiver Id from Room.setReceiver', this)
// Logger.error('cant set receiver Id from Room.setReceiver', this)
}
}