Bug 1368024 - Fall back to 'name' when 'short_name' is missing. r=daleharvey

MozReview-Commit-ID: 84jFO85dgI9

--HG--
extra : rebase_source : 4155ba96e1556f6056bd4a226094121f2757f28d
This commit is contained in:
Nevin Chen 2017-10-05 15:20:04 +08:00
parent 566f9ff84a
commit a5d75c2143

View File

@ -109,6 +109,7 @@ class Manifest {
get name() {
return this._store.data.manifest.short_name ||
this._store.data.manifest.name ||
this._store.data.manifest.short_url;
}