fail silently when status card cannot be loaded for compatibility with Pleroma

This commit is contained in:
Conny Duck 2018-03-09 18:56:05 +01:00
parent d4d764ab2d
commit 44b79e31d4
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ public class ViewThreadFragment extends SFragment implements
@Override @Override
public void onFailure(@NonNull Call<Card> call, @NonNull Throwable t) { public void onFailure(@NonNull Call<Card> call, @NonNull Throwable t) {
onThreadRequestFailure(id); Log.e(TAG, "Error fetching status card");
} }
}); });
callList.add(call); callList.add(call);