kopia lustrzana https://github.com/ryukoposting/Signal-Android
Clearing the text field resets link preview cancellation.
rodzic
e2c2e59442
commit
7b20fca1ac
|
@ -7,6 +7,7 @@ import android.arch.lifecycle.ViewModelProvider;
|
|||
import android.content.Context;
|
||||
import android.net.Uri;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.text.TextUtils;
|
||||
|
||||
import org.thoughtcrime.securesms.attachments.Attachment;
|
||||
import org.thoughtcrime.securesms.attachments.UriAttachment;
|
||||
|
@ -82,6 +83,10 @@ public class LinkPreviewViewModel extends ViewModel {
|
|||
|
||||
public void onTextChanged(@NonNull Context context, @NonNull String text) {
|
||||
debouncer.publish(() -> {
|
||||
if (TextUtils.isEmpty(text)) {
|
||||
userCanceled = false;
|
||||
}
|
||||
|
||||
if (userCanceled) {
|
||||
return;
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue