Merge pull request #5423 from ByteHamster/fix-name-local-folder
Fix deleting local folder not showing name
This commit is contained in:
commit
160401ad13
|
@ -69,7 +69,7 @@ public class RemoveFeedDialog {
|
||||||
private static String getMessageId(Context context, List<Feed> feeds) {
|
private static String getMessageId(Context context, List<Feed> feeds) {
|
||||||
if (feeds.size() == 1) {
|
if (feeds.size() == 1) {
|
||||||
if (feeds.get(0).isLocalFeed()) {
|
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 {
|
} else {
|
||||||
return context.getString(R.string.feed_delete_confirmation_msg, feeds.get(0).getTitle());
|
return context.getString(R.string.feed_delete_confirmation_msg, feeds.get(0).getTitle());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue