pull/1545/head
Audric Ackermann 4 years ago
parent 1f509e003d
commit c7d140f4d4
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -4,12 +4,12 @@ import {
getAddModeratorsMenuItem,
getBlockMenuItem,
getCopyMenuItem,
getMarkAllReadMenuItem,
getDeleteContactMenuItem,
getDeleteMessagesMenuItem,
getDisappearingMenuItem,
getInviteContactMenuItem,
getLeaveGroupMenuItem,
getMarkAllReadMenuItem,
getRemoveModeratorsMenuItem,
getUpdateGroupNameMenuItem,
} from './Menu';

@ -5,11 +5,11 @@ import {
getBlockMenuItem,
getClearNicknameMenuItem,
getCopyMenuItem,
getMarkAllReadMenuItem,
getDeleteContactMenuItem,
getDeleteMessagesMenuItem,
getInviteContactMenuItem,
getLeaveGroupMenuItem,
getMarkAllReadMenuItem,
} from './Menu';
export type PropsContextConversationItem = {

@ -1354,7 +1354,8 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
public copyPublicKey() {
if (this.isPublic()) {
const openGroupUrl = this.id.substr(this.id.indexOf('@') + 1);
const atIndex = this.id.indexOf('@') as number;
const openGroupUrl = this.id.substr(atIndex + 1);
window.clipboard.writeText(openGroupUrl);
ToastUtils.pushCopiedToClipBoard();

Loading…
Cancel
Save