We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f209817 commit 464dda1Copy full SHA for 464dda1
components/webapps/browser/android/app_banner_manager_android.cc
@@ -467,7 +467,7 @@ std::u16string AppBannerManagerAndroid::GetAppName() const {
467
// Prefer the short name if it's available. It's guaranteed that at least
468
// one of these is non-empty.
469
std::u16string short_name = manifest().short_name.value_or(u"");
470
- return short_name.empty() ? manifest().name.value_or(u"") : u"";
+ return short_name.empty() ? manifest().name.value_or(u"") : short_name;
471
}
472
473
return native_app_title_;
0 commit comments