зеркало из https://github.com/mozilla/pjs.git
Bug 720509 - Add null check for URI scheme in options menu. r=mfinkle
This commit is contained in:
Родитель
238785e100
Коммит
eb54e1e4ed
|
@ -457,8 +457,8 @@ abstract public class GeckoApp
|
|||
|
||||
// Disable share menuitem for about:, chrome: and file: URIs
|
||||
String scheme = Uri.parse(tab.getURL()).getScheme();
|
||||
boolean enabled = !(scheme.equals("about") || scheme.equals("chrome") ||
|
||||
scheme.equals("file"));
|
||||
boolean enabled = scheme != null && !(scheme.equals("about") || scheme.equals("chrome") ||
|
||||
scheme.equals("file"));
|
||||
share.setEnabled(enabled);
|
||||
|
||||
// Disable save as PDF for about:home and xul pages
|
||||
|
|
Загрузка…
Ссылка в новой задаче