Fix a bug with photos in SeLoger module

This commit is contained in:
Lucas Verney 2021-05-16 13:14:10 +02:00
parent fd33e5cb3f
commit c463b468e8
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ class HousingPage(HTMLPage):
photos = []
for photo in Dict('photoList')(self):
photos.append(HousingPhoto("https:{}".format(photo['fullscreenUrl'])))
photos.append(HousingPhoto(photo['fullscreenUrl']))
return photos