Allow admins/moderators to delete/pin in channels

This commit is contained in:
N-Pex 2024-10-22 11:59:07 +02:00
parent 35b2dc60d7
commit 254eb72870
3 changed files with 4 additions and 4 deletions

View file

@ -1372,9 +1372,9 @@ export default {
this.paginateBackIfNeeded();
}
if (loadingDone && event.forwardLooking && (!(event.isRelation() || event.isRedaction()) || event.isMxThread || event.threadRootId || event.parentThread)) {
if (loadingDone && event.forwardLooking && (!event.isRelation() || event.isMxThread || event.threadRootId || event.parentThread)) {
// If we are at bottom, scroll to see new events...
var scrollToSeeNew = event.getSender() == this.$matrix.currentUserId; // When we sent, scroll
var scrollToSeeNew = !event.isRedaction() && event.getSender() == this.$matrix.currentUserId; // When we sent, scroll
const container = this.chatContainer;
if (container) {
if (this.reverseOrder && container.scrollTop.toFixed(0) == 0) {