mirror of
https://github.com/jlengrand/RemarkablePocket.git
synced 2026-03-10 08:41:19 +00:00
Fix README, minor refactor
This commit is contained in:
@@ -83,7 +83,7 @@ Synchronizes articles from Pocket to the Remarkable tablet.
|
||||
|
||||
## Thanks
|
||||
- https://epub.press/ for providing a free epub generator API. Consider donating to support this project.
|
||||
- https://github.com/juruen/rmapi for providing a Java API for the Remarkable Cloud.
|
||||
- https://github.com/jlarriba/jrmapi for providing a Java API for the Remarkable Cloud.
|
||||
|
||||
## Support
|
||||
[](https://www.buymeacoffee.com/nov1n) if you want to say thanks. :-)
|
||||
|
||||
@@ -97,7 +97,7 @@ final class SyncService {
|
||||
pocketService.getArticles().stream()
|
||||
.filter(e -> !articlesOnRm.contains(e.title()))
|
||||
.collect(Collectors.toList());
|
||||
if (unsynced.size() == 0) {
|
||||
if (unsynced.isEmpty()) {
|
||||
LOG.info("All Pocket articles are synced with Remarkable.");
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user