]> Untitled Git - lemmy.git/commitdiff
Removing webp for now.
authorDessalines <tyhou13@gmx.com>
Fri, 5 Jun 2020 15:45:04 +0000 (11:45 -0400)
committerDessalines <tyhou13@gmx.com>
Fri, 5 Jun 2020 15:45:04 +0000 (11:45 -0400)
ui/src/utils.ts

index cb56ba58102be8c61ed2515fd5bd3b8818eeae39..9615846270124c220ab2723319eca250784f7b44 100644 (file)
@@ -863,16 +863,19 @@ export function previewLines(text: string, lines: number = 3): string {
 }
 
 function canUseWebP() {
-  var elem = document.createElement('canvas');
+  // TODO pictshare might have a webp conversion bug, try disabling this
+  return false;
 
-  if (!!(elem.getContext && elem.getContext('2d'))) {
-    var testString = !(window.mozInnerScreenX == null) ? 'png' : 'webp';
-    // was able or not to get WebP representation
-    return (
-      elem.toDataURL('image/webp').startsWith('data:image/' + testString)
-    );
-  }
+  // var elem = document.createElement('canvas');
 
-  // very old browser like IE 8, canvas not supported
-  return false;
+  // if (!!(elem.getContext && elem.getContext('2d'))) {
+  //   var testString = !(window.mozInnerScreenX == null) ? 'png' : 'webp';
+  //   // was able or not to get WebP representation
+  //   return (
+  //     elem.toDataURL('image/webp').startsWith('data:image/' + testString)
+  //   );
+  // }
+
+  // // very old browser like IE 8, canvas not supported
+  // return false;
 }