Skip to content

Commit

Permalink
bug resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
jfoclpf committed Jun 10, 2023
1 parent 58adab9 commit 3e0bd8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions www/js/photos.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,9 @@ app.photos = (function (thisModule) {
window.localStorage.setItem(arrayName, JSON.stringify(photoWithGPS))
break
case 'ALL':
window.localStorage.setItem(arrayName, JSON.stringify(photosUriOnFileSystem))
window.localStorage.setItem(arrayName, JSON.stringify(photosAsBase64))
window.localStorage.setItem(arrayName, JSON.stringify(photoWithGPS))
window.localStorage.setItem('photosUriOnFileSystem', JSON.stringify(photosUriOnFileSystem))
window.localStorage.setItem('photosAsBase64', JSON.stringify(photosAsBase64))
window.localStorage.setItem('photoWithGPS', JSON.stringify(photoWithGPS))
break
default:
throw Error('Invalid option ' + arrayName)
Expand Down

0 comments on commit 3e0bd8e

Please sign in to comment.