ltt 1 năm trước cách đây
mục cha
commit
573a22b6fe

+ 1 - 1
TMessagesProj/src/main/java/org/telegram/cricdit/adapter/NewsGroupAdapter.java

@@ -444,7 +444,7 @@ public class NewsGroupAdapter extends RecyclerView.Adapter {
             } else if (!TextUtils.isEmpty(public_link)) {
                 parameter.add("public_link", public_link.startsWith("https://t.me/") ? public_link : "https://t.me/" + public_link);
             }
-            parameter.add("group_member", chatFull.participants_count == 0 ? chat.participants_count : chatFull.participants_count + "");
+            parameter.add("group_member", chatFull.participants_count == 0 ? chat.participants_count : chatFull.participants_count);
             parameter.add("type", (ChatObject.isChannel(chat) && !chat.megagroup) ? 1 : 0);
 
             if (chat.photo != null && chat.photo.stripped_thumb != null) {

+ 1 - 1
TMessagesProj/src/main/java/org/telegram/cricdit/adapter/RecommendGroupAdapter.java

@@ -234,7 +234,7 @@ public class RecommendGroupAdapter extends BaseQuickAdapter<MoreGroupBean.MoreGr
             } else if (!TextUtils.isEmpty(public_link)) {
                 parameter.add("public_link", public_link.startsWith("https://t.me/") ? public_link : "https://t.me/" + public_link);
             }
-            parameter.add("group_member", chatFull.participants_count == 0 ? chat.participants_count : chatFull.participants_count + "");
+            parameter.add("group_member", chatFull.participants_count == 0 ? chat.participants_count : chatFull.participants_count);
             parameter.add("type", (ChatObject.isChannel(chat) && !chat.megagroup) ? 1 : 0);
             
             if (chat.photo != null && chat.photo.stripped_thumb != null) {

+ 1 - 1
TMessagesProj/src/main/java/org/telegram/cricdit/ui/MoreGroupFragment.java

@@ -313,7 +313,7 @@ public class MoreGroupFragment implements BaseViewFragment, MoreGroupView {
             } else if (!TextUtils.isEmpty(public_link)) {
                 parameter.add("public_link", public_link.startsWith("https://t.me/") ? public_link : "https://t.me/" + public_link);
             }
-            parameter.add("group_member", chatFull.participants_count == 0 ? chat.participants_count : chatFull.participants_count + "");
+            parameter.add("group_member", chatFull.participants_count == 0 ? chat.participants_count : chatFull.participants_count);
             parameter.add("type", (ChatObject.isChannel(chat) && !chat.megagroup) ? 1 : 0);
 
             if (chat.photo != null && chat.photo.stripped_thumb != null) {