浏览代码

Increase diff response limit

Vishnu Mohandas 4 年之前
父节点
当前提交
90b41c67a5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/pages/gallery/index.tsx

+ 1 - 1
src/pages/gallery/index.tsx

@@ -41,7 +41,7 @@ export default function Gallery() {
         const main = async () => {
             setLoading(true);
             const encryptionKey = await getActualKey();
-            const resp = await getFiles("0", token, "24", encryptionKey);
+            const resp = await getFiles("0", token, "100", encryptionKey);
             setLoading(false);
             setData(resp);
         };