瀏覽代碼

Cap embed iframe height at 10000px

Zed 1 月之前
父節點
當前提交
b76e3c3913
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      public/js/widgets.js

+ 1 - 1
public/js/widgets.js

@@ -105,7 +105,7 @@
   function handleResize(e) {
     if (!Array.isArray(e.data) || e.data[0] !== "resizeIframe") return;
     var h = e.data[1] && e.data[1].h;
-    if (!h || h <= 0) return;
+    if (!h || h <= 0 || h > 10000) return; // Cap at 10000px for sanity
 
     var frames = document.querySelectorAll("iframe.nitter-embed-frame");
     for (var i = 0; i < frames.length; i++) {