mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-27 20:24:32 +01:00
Add support for non-blocking media sends.
This commit is contained in:
@@ -110,7 +110,11 @@ public class RecipientId implements Parcelable, Comparable<RecipientId> {
|
||||
}
|
||||
|
||||
public @NonNull String toQueueKey() {
|
||||
return "RecipientId::" + id;
|
||||
return toQueueKey(false);
|
||||
}
|
||||
|
||||
public @NonNull String toQueueKey(boolean forMedia) {
|
||||
return "RecipientId::" + id + (forMedia ? "::MEDIA" : "");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user