Skip to content

Commit

Permalink
fix: send mult photos in topic group when use share
Browse files Browse the repository at this point in the history
  • Loading branch information
omg-xtao committed Oct 21, 2024
1 parent 7fc6997 commit 7fab993
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ public static void checkKeyReady(boolean notifyCheckFingerprint) {

public static boolean isKeyReady() {
try {
return getKeyStore().containsAlias(KEY_ALIAS);
var ks = getKeyStore();
if (ks != null) {
return ks.containsAlias(KEY_ALIAS);
}
} catch (KeyStoreException e) {
FileLog.e(e);
}
Expand Down
13 changes: 6 additions & 7 deletions TMessagesProj/src/main/java/org/telegram/ui/LaunchActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -6153,15 +6153,14 @@ public boolean didSelectDialogs(DialogsActivity dialogsFragment, ArrayList<Messa
ArrayList<String> arrayList = new ArrayList<>();
arrayList.add(videoPath);
SendMessagesHelper.prepareSendingDocuments(accountInstance, arrayList, arrayList, null, captionToSend, null, did, replyToMsg, replyToMsg, null, null, null, notify, scheduleDate, null, null, 0, 0, false);
} else if (photoPathsArray != null && photoPathsArray.size() > 0 && !photosEditorOpened) {
if (sendingText != null && sendingText.length() <= 1024 && photoPathsArray.size() == 1) {
photoPathsArray.get(0).caption = sendingText;
sendingText = null;
}
SendMessagesHelper.prepareSendingMedia(accountInstance, photoPathsArray, did, replyToMsg, replyToMsg, null, null, false, false, null, notify, scheduleDate, 0, false, null, null, 0, 0, false);
}
}
if (photoPathsArray != null && !photosEditorOpened) {
if (sendingText != null && sendingText.length() <= 1024 && photoPathsArray.size() == 1) {
photoPathsArray.get(0).caption = sendingText;
sendingText = null;
}
SendMessagesHelper.prepareSendingMedia(accountInstance, photoPathsArray, did, replyToMsg, replyToMsg, null, null, false, false, null, notify, scheduleDate, 0, false, null, null, 0, 0, false);
}
if (documentsPathsArray != null || documentsUrisArray != null) {
if (sendingText != null && sendingText.length() <= 1024 && ((documentsPathsArray != null ? documentsPathsArray.size() : 0) + (documentsUrisArray != null ? documentsUrisArray.size() : 0)) == 1) {
captionToSend = sendingText;
Expand Down

0 comments on commit 7fab993

Please sign in to comment.