Remove quick replies for remote instances

This commit is contained in:
tom79 2019-06-28 18:29:22 +02:00
parent 0edfe93f39
commit 9b1b652b61
2 changed files with 4 additions and 3 deletions

View File

@ -6,8 +6,8 @@ android {
defaultConfig {
minSdkVersion 18
targetSdkVersion 28
versionCode 286
versionName "2.8.0-beta-1"
versionCode 287
versionName "2.8.0"
multiDexEnabled true
renderscriptTargetApi 28 as int
renderscriptSupportModeEnabled true

View File

@ -2498,7 +2498,8 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
holder.status_reply.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (quick_reply) {
if (quick_reply && type != RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE) {
holder.warning_message.setVisibility(View.GONE);
if( status.getWarningFetched() == -1 ){