diff options
-rw-r--r-- | application/palemoon/components/places/PlacesUIUtils.jsm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/palemoon/components/places/PlacesUIUtils.jsm b/application/palemoon/components/places/PlacesUIUtils.jsm index e90c84152..f62535613 100644 --- a/application/palemoon/components/places/PlacesUIUtils.jsm +++ b/application/palemoon/components/places/PlacesUIUtils.jsm @@ -1161,7 +1161,7 @@ this.PlacesUIUtils = { function PUIU_getImageURLForResolution(aWindow, aURL, aWidth = 16, aHeight = 16) { let width = Math.round(aWidth * aWindow.devicePixelRatio); let height = Math.round(aHeight * aWindow.devicePixelRatio); - return aURL + (aURL.contains("#") ? "&" : "#") + + return aURL + (aURL.includes("#") ? "&" : "#") + "-moz-resolution=" + width + "," + height; } }; |