Compare commits

..

No commits in common. "release" and "releases/0.2" have entirely different histories.

3 changed files with 3 additions and 16 deletions

View file

@ -1,4 +1,4 @@
name: Create release on tag push
name: Create release on tag push
on:
push:
@ -12,7 +12,7 @@ jobs:
steps:
- name: Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v2
- name: Draft release
uses: ncipollo/release-action@v1

View file

@ -1,12 +1,3 @@
# devel
## Fixed
* Looking up a CMDR with public profile, but hidden activity (= no date of last
activity) will no longer throw an exception.
-----
# 0.2 (2022-07-02)
## Added

View file

@ -49,11 +49,7 @@ class Commander(Positionable):
json = logsApi.Position.getSystem(self.name, self.apiKey)
self.profileUrl = json
if 'dateLastActivity' in json:
date = json['dateLastActivity']
if date is None:
return None
else:
return dateparser.parse(json['dateLastActivity'])
return dateparser.parse(json['dateLastActivity'])
else:
return None