fall back to legacy save ID
parent
2aab022ce3
commit
e4713e6ea3
|
@ -591,6 +591,9 @@ func handleUpdateAll(w http.ResponseWriter, r *http.Request) {
|
|||
httpError(w, r, fmt.Errorf("failed to decode request body: %s", err), http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
if data.ClientSessionId == "" {
|
||||
data.ClientSessionId = legacyClientSessionId
|
||||
}
|
||||
|
||||
var active bool
|
||||
active, err = db.IsActiveSession(uuid, data.ClientSessionId)
|
||||
|
|
Loading…
Reference in New Issue