Prevent opening inline images

This commit is contained in:
M66B
2019-03-27 06:52:36 +00:00
parent 97db894051
commit 969a0228ff
2 changed files with 11 additions and 0 deletions

View File

@@ -1757,6 +1757,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
new Intent(ActivityView.ACTION_ACTIVATE_PRO)
.putExtra("uri", uri));
} else {
if ("cid".equals(uri.getScheme()))
return;
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
View view = LayoutInflater.from(context).inflate(R.layout.dialog_link, null);