close #115, close #118, close #120, close #123

This commit is contained in:
Austin Huang 2020-09-06 17:26:45 -04:00
parent 9bf96cfe73
commit bdb8ee6d75
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
3 changed files with 5 additions and 7 deletions

4
.github/FUNDING.yml vendored
View File

@ -3,10 +3,10 @@
github: austinhuang0131
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
ko_fi: austinhuang
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: austinhuang
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: https://austinhuang.me/donate
custom: ["https://austinhuang.me/donate","https://flattr.com/@austinhuang"]

View File

@ -14,11 +14,9 @@ For documentation, visit [InstaGrabber.AustinHuang.me](https://instagrabber.aust
**By installing, you indicate your acceptance of [Disclosure and Privacy Policy](https://instagrabber.austinhuang.me/disclosure).**
Download from [GitHub releases](https://github.com/austinhuang0131/instagrabber/releases/latest) (recommended). Expand "Assets" and download the APK file. Or...
<a href="https://f-droid.org/en/packages/me.austinhuang.instagrabber/"><img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" height="75"></a>
(...[but they're slow.](https://instagrabber.austinhuang.me/faq#f-droid))
Or, download from [GitHub releases](https://github.com/austinhuang0131/instagrabber/releases/latest). Expand "Assets" and download the APK file.
Version status: ![F-Droid](https://img.shields.io/f-droid/v/me.austinhuang.instagrabber.svg) vs. ![GitHub](https://img.shields.io/github/release/austinhuang0131/instagrabber.svg?logo=github)
@ -37,7 +35,7 @@ Version status: ![F-Droid](https://img.shields.io/f-droid/v/me.austinhuang.insta
* Telegram: [@Grabber_App](https://t.me/grabber_app)
* Discord: [https://discord.gg/YtEDzN2](https://discord.gg/YtEDzN2)
* Gitter: [InstaGrabber/General](https://gitter.im/instagrabber/general)
* Above 4 are bridged to each other
* Above 4 are bridged to each other.
### Contributors

View File

@ -59,7 +59,7 @@ public final class SavedViewer extends BaseLanguageActivity implements SwipeRefr
@Override
public void onResult(final PostModel[] result) {
final int oldSize = allItems.size();
if (result != null) {
if (result != null && result.length > 0) {
allItems.addAll(Arrays.asList(result));
postsAdapter.notifyItemRangeInserted(oldSize, result.length);