Add blog entry

This commit is contained in:
Daniel Kluge 2022-08-08 12:25:13 +02:00
parent d8132b785d
commit 27de298cf4
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,7 @@
# Google Photo Album Sync # Google Photo Album Sync
[![Read the blog entry at c0ntroller.de](https://c0ntroller.de/img/read-blog.svg)](https://c0ntroller.de/#/project/photo-sync)
A script that will download all images from an album. A script that will download all images from an album.
Perfect to use if you have a local directory for your background, chromecast or whatever. Perfect to use if you have a local directory for your background, chromecast or whatever.

View File

@ -63,7 +63,7 @@ async function syncImage(imageObject) {
Solution: We use a counter to keep track of how many times we've downloaded Solution: We use a counter to keep track of how many times we've downloaded
the same filename. This is only dependend on the sync but not accross syncs. the same filename. This is only dependend on the sync but not accross syncs.
This want work when the creation time of the images change because Google sorts This wont work when the creation time of the images change because Google sorts
images by that. And we can't sort them ourself because "orderBy" needs a images by that. And we can't sort them ourself because "orderBy" needs a
"dateFilter" and that is exclusive with the "albumId"... "dateFilter" and that is exclusive with the "albumId"...
*/ */