mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-05 00:21:57 +00:00
Format-neutral compare numbers in MMS group with local device.
Closes #1018
This commit is contained in:
@@ -61,9 +61,9 @@ public class MmsDownloader {
|
||||
}
|
||||
|
||||
public void process(MasterSecret masterSecret, Intent intent) {
|
||||
if (intent.getAction().equals(SendReceiveService.DOWNLOAD_MMS_ACTION)) {
|
||||
if (SendReceiveService.DOWNLOAD_MMS_ACTION.equals(intent.getAction())) {
|
||||
handleDownloadMms(masterSecret, intent);
|
||||
} else if (intent.getAction().equals(SendReceiveService.DOWNLOAD_MMS_PENDING_APN_ACTION)) {
|
||||
} else if (SendReceiveService.DOWNLOAD_MMS_PENDING_APN_ACTION.equals(intent.getAction())) {
|
||||
handleMmsPendingApnDownloads(masterSecret);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user