mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-17 20:27:29 +00:00
v17.6
This commit is contained in:
parent
7ddf356de9
commit
280e5d44c0
@ -45,10 +45,10 @@ public final class iStoryStatusFetcher extends AsyncTask<Void, Void, StoryModel[
|
||||
StoryModel[] result = null;
|
||||
final String url = "https://" + (storiesig ? "storiesig" : "i.instagram") + ".com/api/v1/"
|
||||
+ (isLoc ? "locations/" : (isHashtag ? "tags/" : (highlight ? "feed/reels_media?user_ids=" : "feed/user/")))
|
||||
+ id + (highlight ? "" : (storiesig ? "/reel_media/" : "/story/"));
|
||||
+ id.replace(":", "%3A") + (highlight ? "" : (storiesig ? "/reel_media/" : "/story/"));
|
||||
try {
|
||||
final HttpURLConnection conn = (HttpURLConnection) new URL(url).openConnection();
|
||||
conn.setInstanceFollowRedirects(false);
|
||||
conn.setInstanceFollowRedirects(true);
|
||||
conn.setUseCaches(false);
|
||||
conn.setRequestProperty("User-Agent", storiesig ? Constants.A_USER_AGENT : Constants.I_USER_AGENT);
|
||||
conn.connect();
|
||||
|
6
fastlane/metadata/android/changelogs/43.txt
Normal file
6
fastlane/metadata/android/changelogs/43.txt
Normal file
@ -0,0 +1,6 @@
|
||||
* Added AMOLED dark mode (#45, Thanks @ammargitham)
|
||||
* Various bug fixes, including
|
||||
* #39 (Updater shows the next version instead of the latest version)
|
||||
* Downloading stories still uses @... folder
|
||||
* Story highlights not being shown
|
||||
* Discover view being shown to non-logged-in users
|
Loading…
Reference in New Issue
Block a user