You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This unfortunately means the app is not able to match the json file since the naming differs and the app is case sensitive. How may i change the suffix it matches to? Or is everything hardcoded to match for "filename.json"?
The text was updated successfully, but these errors were encountered:
This unfortunately means the app is not able to match the json file since the naming differs and the app is case sensitive. How may i change the suffix it matches to? Or is everything hardcoded to match for "filename.json"?
To bypass this I simply ran
for i in *; do mv "$i" "$(echo $i|tr A-Z a-z)"; done
within the folder that's having that issue to change all the letters to lowercase. Do this for every album/year
I recently (24th of December) took out an export from Google Photos and the json files are as follows:
This unfortunately means the app is not able to match the json file since the naming differs and the app is case sensitive. How may i change the suffix it matches to? Or is everything hardcoded to match for "filename.json"?
The text was updated successfully, but these errors were encountered: