Include release body in wowlet releases websocket cmd

This commit is contained in:
dsc 2021-05-03 22:07:06 +02:00
parent 7fc99af8b9
commit 947f34da0f
1 changed files with 3 additions and 2 deletions

View File

@ -48,12 +48,13 @@ class WowletReleasesTask(WowletTask):
_semver = self.parse_semver(blob)
return {
"assets": data,
"body": blob['body'],
"version": {
"major": _semver.major,
"minor": _semver.minor,
"patch": _semver.patch
},
"assets": data
}
}
def parse_semver(self, blob):