mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-27 17:35:07 +01:00
Revert none checking in telemetry logs
This commit is contained in:
parent
211c5623e8
commit
737fb6417b
1 changed files with 3 additions and 3 deletions
|
@ -86,9 +86,9 @@ def update_telemetry_state(
|
|||
"user_agent": user_agent or "unknown",
|
||||
"referer": referer or "unknown",
|
||||
"host": host or "unknown",
|
||||
"server_id": str(user.uuid),
|
||||
"subscription_type": subscription.type,
|
||||
"is_recurring": subscription.is_recurring,
|
||||
"server_id": str(user.uuid) if user else None,
|
||||
"subscription_type": subscription.type if subscription else None,
|
||||
"is_recurring": subscription.is_recurring if subscription else None,
|
||||
"client_id": str(client_app.name) if client_app else "default",
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue