Fix declaration file names

pull/1198/head
Mikunj 5 years ago
parent 522e9fb4ec
commit 225d7f84e4

@ -1191,7 +1191,7 @@
};
},
getOpenGroup() {
toOpenGroup() {
if (!this.isPublic()) {
return undefined;
}
@ -1325,7 +1325,7 @@
options.messageType = message.get('type');
options.isPublic = this.isPublic();
if (this.isPublic()) {
const openGroup = this.getOpenGroup();
const openGroup = this.toOpenGroup();
const openGroupParams = {
body,

@ -1017,7 +1017,7 @@
const previewWithData = await loadPreviewData(this.get('preview'));
const conversation = this.getConversation();
const openGroup = conversation && conversation.getOpenGroup();
const openGroup = conversation && conversation.toOpenGroup();
const { AttachmentUtils } = libsession.Utils;
const [attachments, preview, quote] = await Promise.all([

@ -1,4 +1,4 @@
import { MessageModel } from '../../js/models/message';
import { MessageModel } from '../../js/models/messages';
// TODO: Might convert it to a class later
let webAPI: any;

@ -1,8 +1,8 @@
import { queueAttachmentDownloads } from './attachments';
import { Quote } from './types';
import { ConversationModel } from '../../js/models/conversation';
import { EndSessionType, MessageModel } from '../../js/models/message';
import { ConversationModel } from '../../js/models/conversations';
import { MessageModel } from '../../js/models/messages';
async function handleGroups(
conversation: ConversationModel,

@ -5,8 +5,7 @@ import { handleMessageJob } from './queuedJob';
import { handleEndSession } from './sessionHandling';
import { handleUnpairRequest } from './multidevice';
import { EnvelopePlus } from './types';
import { ConversationModel } from '../../js/models/conversation';
import { EndSessionType, MessageModel } from '../../js/models/message';
import { MessageModel } from '../../js/models/messages';
import { downloadAttachment } from './attachments';
import { handleMediumGroupUpdate } from './mediumGroups';

Loading…
Cancel
Save