Skip to content

Commit

Permalink
Fix broken reference
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Jun 21, 2021
1 parent f8cf5b8 commit 13a4093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webqueue2api/parser/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def to_json(self) -> dict:
"""
items = []
for item in self.items:
items.append(item.toJson())
items.append(item.to_json())
self.json_data["items"] = items

return self.json_data
Expand Down

0 comments on commit 13a4093

Please sign in to comment.