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
|
## Thanks
|
||||||
- https://epub.press/ for providing a free epub generator API. Consider donating to support this project.
|
- 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
|
## Support
|
||||||
[](https://www.buymeacoffee.com/nov1n) if you want to say thanks. :-)
|
[](https://www.buymeacoffee.com/nov1n) if you want to say thanks. :-)
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ final class SyncService {
|
|||||||
pocketService.getArticles().stream()
|
pocketService.getArticles().stream()
|
||||||
.filter(e -> !articlesOnRm.contains(e.title()))
|
.filter(e -> !articlesOnRm.contains(e.title()))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
if (unsynced.size() == 0) {
|
if (unsynced.isEmpty()) {
|
||||||
LOG.info("All Pocket articles are synced with Remarkable.");
|
LOG.info("All Pocket articles are synced with Remarkable.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user