fix messaging
This commit is contained in:
parent
6a57810123
commit
3e5d9cc6c9
|
@ -294,7 +294,7 @@ export class MessagingService {
|
|||
.where('message.groupId = :groupId', { groupId: groupId })
|
||||
.andWhere('message.userId != :userId', { userId: userId })
|
||||
.andWhere('NOT (:userId = ANY(message.reads))', { userId: userId })
|
||||
.andWhere('message.createdAt > :joinedAt', { joinedAt: this.idService.parse(joining.id) }) // 自分が加入する前の会話については、未読扱いしない
|
||||
.andWhere('message.id > :joinedAt', { joinedAt: this.idService.parse(joining.id) }) // 自分が加入する前の会話については、未読扱いしない
|
||||
.getOne().then(x => x != null);
|
||||
|
||||
if (!unreadExist) {
|
||||
|
|
|
@ -233,7 +233,7 @@ export class UserEntityService implements OnModuleInit {
|
|||
.where('message.groupId = :groupId', { groupId: j.userGroupId })
|
||||
.andWhere('message.userId != :userId', { userId: userId })
|
||||
.andWhere('NOT (:userId = ANY(message.reads))', { userId: userId })
|
||||
.andWhere('message.createdAt > :joinedAt', { joinedAt: this.idService.parse(j.id) }) // 自分が加入する前の会話については、未読扱いしない
|
||||
.andWhere('message.id > :joinedAt', { joinedAt: this.idService.parse(j.id) }) // 自分が加入する前の会話については、未読扱いしない
|
||||
.getOne().then(x => x != null)));
|
||||
|
||||
const [withUser, withGroups] = await Promise.all([
|
||||
|
|
|
@ -73,7 +73,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
: history.map(m => (m.userId === me.id) ? m.recipientId! : m.userId!);
|
||||
|
||||
const query = this.messagingMessagesRepository.createQueryBuilder('message')
|
||||
.orderBy('message.createdAt', 'DESC');
|
||||
.orderBy('message.id', 'DESC');
|
||||
|
||||
if (ps.group) {
|
||||
query.where('message.groupId IN (:...groups)', { groups: groups });
|
||||
|
|
Loading…
Reference in a new issue