Merge pull request #5423 from ByteHamster/fix-name-local-folder

Fix deleting local folder not showing name
This commit is contained in:
ByteHamster 2021-10-02 17:14:08 +02:00 committed by GitHub
commit 160401ad13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public class RemoveFeedDialog {
private static String getMessageId(Context context, List<Feed> feeds) {
if (feeds.size() == 1) {
if (feeds.get(0).isLocalFeed()) {
return context.getString(R.string.feed_delete_confirmation_local_msg);
return context.getString(R.string.feed_delete_confirmation_local_msg, feeds.get(0).getTitle());
} else {
return context.getString(R.string.feed_delete_confirmation_msg, feeds.get(0).getTitle());
}