mirror of https://github.com/dirtbags/moth.git
Fix how legacy puzzles with author (vs. authors) field are handled
This commit is contained in:
parent
1bb777e512
commit
a2ceea3176
|
@ -289,7 +289,7 @@ class Puzzle:
|
||||||
|
|
||||||
files = [fn for fn,f in self.files.items() if f.visible]
|
files = [fn for fn,f in self.files.items() if f.visible]
|
||||||
return {
|
return {
|
||||||
'authors': self.authors,
|
'authors': self.get_authors(),
|
||||||
'hashes': self.hashes(),
|
'hashes': self.hashes(),
|
||||||
'files': files,
|
'files': files,
|
||||||
'scripts': self.scripts,
|
'scripts': self.scripts,
|
||||||
|
|
Loading…
Reference in New Issue