mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-06 07:06:19 +01:00
Fixed a bug with links not registering correctly when undocked. Also removed some typos. (#418)
This commit is contained in:
committed by
Mr McClain
parent
fa05003455
commit
dbc9b584d1
@@ -158,7 +158,10 @@ def click_fatlink_view(request, hash, fatname):
|
||||
if character:
|
||||
fat = Fat()
|
||||
fat.system = request.META['HTTP_EVE_SOLARSYSTEMNAME']
|
||||
fat.station = request.META['HTTP_EVE_STATIONNAME']
|
||||
if 'HTTP_EVE_STATIONNAME' in request.META:
|
||||
fat.station = request.META['HTTP_EVE_STATIONNAME']
|
||||
else:
|
||||
fat.station = "No Station"
|
||||
fat.shiptype = request.META['HTTP_EVE_SHIPTYPENAME']
|
||||
fat.fatlink = fatlink
|
||||
fat.character = character
|
||||
|
||||
Reference in New Issue
Block a user