Fix for issue #230

This commit is contained in:
Rhet Turnbull
2020-10-06 06:22:17 -07:00
parent 08725fd27f
commit 42a6373f8d
3 changed files with 5 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
""" version info """
__version__ = "0.34.3"
__version__ = "0.34.4"

View File

@@ -1296,11 +1296,12 @@ class PhotosDB:
# get the place info that matches the RKPlace modelIDs for this photo
# (place_ids), sort by area (element 3 of the place_data tuple in places)
# area could be None so assume 0 if it is (issue #230)
place_names = [
pname
for pname in sorted(
[places[p] for p in places if p in place_ids],
key=lambda place: place[3],
key=lambda place: place[3] if place[3] is not None else 0,
)
]