fixed a bug that caused custom names to get lost - sorry pecha ;-;
This commit is contained in:
parent
0c51ba642a
commit
e519907f9d
2 changed files with 2 additions and 2 deletions
|
@ -65,9 +65,9 @@ class YahooAuctionsItem:
|
|||
if url == None and from_json != None and id != None:
|
||||
self.id = id
|
||||
self.name = from_json['name']
|
||||
self.original_name = from_json['original_name']
|
||||
if self.name == "":
|
||||
self.name = self.original_name
|
||||
self.original_name = from_json['original_name']
|
||||
self.favourite = from_json['favourite']
|
||||
self.url = f"https://buyee.jp/item/yahoo/auction/{self.id}"
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ class BuypeebSettings:
|
|||
for key in j:
|
||||
setattr(self, key, j[key])
|
||||
for key in self.jwatchlist:
|
||||
self.watchlist[key] = YahooAuctionsItem("", from_json = self.jwatchlist[key], id = key)
|
||||
self.watchlist[key] = YahooAuctionsItem(url = None, from_json = self.jwatchlist[key], id = key)
|
||||
|
||||
self.jwatchlist = {}
|
||||
|
||||
|
|
Loading…
Reference in a new issue