diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-04-19 09:51:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-19 09:51:02 +0100 |
commit | 7e745665a47058209f7f1fcf51c50ff91c43c7c4 (patch) | |
tree | b32e4d99f7819ce526c436ea109aa21c865e8f6a /userapi/storage/sqlite3 | |
parent | abf71649b0a27ddc564105f94db270696698ecd5 (diff) |
Change `pushkey_ts` to be seconds (fix #2354) (#2358)
Diffstat (limited to 'userapi/storage/sqlite3')
-rw-r--r-- | userapi/storage/sqlite3/pusher_table.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/userapi/storage/sqlite3/pusher_table.go b/userapi/storage/sqlite3/pusher_table.go index e718792e..d5bd1617 100644 --- a/userapi/storage/sqlite3/pusher_table.go +++ b/userapi/storage/sqlite3/pusher_table.go @@ -23,7 +23,6 @@ import ( "github.com/matrix-org/dendrite/internal/sqlutil" "github.com/matrix-org/dendrite/userapi/api" "github.com/matrix-org/dendrite/userapi/storage/tables" - "github.com/matrix-org/gomatrixserverlib" "github.com/sirupsen/logrus" ) @@ -95,7 +94,7 @@ type pushersStatements struct { // Returns nil error success. func (s *pushersStatements) InsertPusher( ctx context.Context, txn *sql.Tx, session_id int64, - pushkey string, pushkeyTS gomatrixserverlib.Timestamp, kind api.PusherKind, appid, appdisplayname, devicedisplayname, profiletag, lang, data, localpart string, + pushkey string, pushkeyTS int64, kind api.PusherKind, appid, appdisplayname, devicedisplayname, profiletag, lang, data, localpart string, ) error { _, err := s.insertPusherStmt.ExecContext(ctx, localpart, session_id, pushkey, pushkeyTS, kind, appid, appdisplayname, devicedisplayname, profiletag, lang, data) logrus.Debugf("Created pusher %d", session_id) |