Skip to content

Commit

Permalink
Fixed an error when an EUD is connected via TCP
Browse files Browse the repository at this point in the history
  • Loading branch information
brian7704 committed Nov 14, 2024
1 parent aa808f8 commit d1806cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opentakserver/controllers/client_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def parse_device_info(self, event):
eud = EUD()
eud.uid = self.uid
eud.callsign = self.callsign
eud.user_id = self.user.id
eud.user_id = self.user.id if self.user else None

self.db.session.add(eud)
self.db.session.commit()
Expand Down

0 comments on commit d1806cf

Please sign in to comment.