Skip to content

Commit

Permalink
fix merging bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Farhad7d7 committed May 2, 2022
1 parent c4380d1 commit ff1a1d7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.fanap.podchat.chat.contact.result_model;

public class ContactSyncedResult {

private long userId;

public ContactSyncedResult(long userId) {
this.userId = userId;
}

public long getUserId() {
return userId;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ public class UserInfo {
private String cellphoneNumber;
private String email;
private String image;
private Boolean contactSynced;

@Ignore
ChatProfileVO chatProfileVO;
private ChatProfileVO chatProfileVO;


public ChatProfileVO getChatProfileVO() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,9 @@ public interface MessageDao {
@RawQuery
List<ThreadVo> getThreadRaw(SupportSQLiteQuery query);

@RawQuery
long getThreadContentCount(SupportSQLiteQuery query);

@RawQuery
List<Long> getThreadIds(SupportSQLiteQuery query);

Expand Down

0 comments on commit ff1a1d7

Please sign in to comment.