Fix a bug with photos in SeLoger module

这个提交包含在:
Lucas Verney 2021-05-16 13:14:10 +02:00
父节点 fd33e5cb3f
当前提交 c463b468e8
共有 1 个文件被更改,包括 1 次插入1 次删除

查看文件

@ -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