File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
syncstorage-postgres/src/db Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ impl Db for PgDb {
9090
9191 let modified = user_collections:: table
9292 . select ( user_collections:: modified)
93- . filter ( user_collections:: fxa_uid . eq ( user_id) )
93+ . filter ( user_collections:: user_id . eq ( user_id) )
9494 . filter ( user_collections:: collection_id. eq ( collection_id) )
9595 . for_share ( )
9696 . first ( & mut self . conn )
@@ -127,7 +127,7 @@ impl Db for PgDb {
127127 self . begin ( true ) . await ?;
128128 let modified = user_collections:: table
129129 . select ( user_collections:: modified)
130- . filter ( user_collections:: fxa_uid . eq ( user_id) )
130+ . filter ( user_collections:: user_id . eq ( user_id) )
131131 . filter ( user_collections:: collection_id. eq ( collection_id) )
132132 . for_update ( )
133133 . first ( & mut self . conn )
You can’t perform that action at this time.
0 commit comments