We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a4bfd7 commit a7d75c0Copy full SHA for a7d75c0
listeningSession/listeningSession.go
@@ -345,6 +345,9 @@ func UpdateSessionIfNecessary(session model.FullListeningSession) *SpotifeteErro
345
if err != nil {
346
return NewInternalError("could not update session", err)
347
}
348
+
349
+ session.UpdatedAt = time.Now()
350
+ database.GetConnection().Save(session.SimpleListeningSession)
351
352
353
return updatePlaylistIfNecessary(session, queue)
0 commit comments