Compare commits
No commits in common. "release" and "releases/0.2" have entirely different histories.
release
...
releases/0
3 changed files with 3 additions and 16 deletions
4
.github/workflows/create-release.yaml
vendored
4
.github/workflows/create-release.yaml
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue