Austin Huang
5 years ago
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
2 changed files with
8 additions and
2 deletions
-
app/src/main/java/awais/instagrabber/asyncs/i/iStoryStatusFetcher.java
-
fastlane/metadata/android/changelogs/43.txt
|
|
@ -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(); |
|
|
|
|
|
@ -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 |