找到KuaiShouApi 类中的
if (url.contains("/fw/photo/")) { return parseVideoOrPhotos(url, httpHeaders); } else if (url.contains("/fw/long-video/")) { return this.parseLongVideo(url, httpHeaders); }
改成
if (url.contains("/fw/long-video/") || url.contains("/fw/photo/") || url.contains("/fw/next-photo/")) { return this.parseLongVideo(url, httpHeaders); }
找到KuaiShouApi 类中的
if (url.contains("/fw/photo/")) { return parseVideoOrPhotos(url, httpHeaders); } else if (url.contains("/fw/long-video/")) { return this.parseLongVideo(url, httpHeaders); }改成
if (url.contains("/fw/long-video/") || url.contains("/fw/photo/") || url.contains("/fw/next-photo/")) { return this.parseLongVideo(url, httpHeaders); }