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
app.views.previous_next_photos looks for the previous/next photos in a given map square.
Currently it does this by looking at the photos with the next lower/higher database id number. This relies on all photos in a given map square having sequential ids, which is something we do not guarantee. Currently it works because all of our methods for rebuilding the database do actually enter photos in order, but we shouldn't rely on this.
Instead, it should increment/decrement via Photo.number and Photo.folder.
The text was updated successfully, but these errors were encountered:
app.views.previous_next_photos
looks for the previous/next photos in a given map square.Currently it does this by looking at the photos with the next lower/higher database id number. This relies on all photos in a given map square having sequential ids, which is something we do not guarantee. Currently it works because all of our methods for rebuilding the database do actually enter photos in order, but we shouldn't rely on this.
Instead, it should increment/decrement via Photo.number and Photo.folder.
The text was updated successfully, but these errors were encountered: