2
0

fix: 下载调整

This commit is contained in:
caiyuchao
2025-06-17 16:14:17 +08:00
parent 4a55516016
commit 23c6900fb9

View File

@@ -30,6 +30,11 @@ public class RemoteFileFallbackFactory implements FallbackFactory<RemoteFileServ
{ {
return R.fail("Failed to upload file:" + throwable.getMessage()); return R.fail("Failed to upload file:" + throwable.getMessage());
} }
@Override
public R<byte[]> download(String filePath) {
return R.fail("Failed to download file:" + throwable.getMessage());
}
}; };
} }
} }