Browse Source

Merge pull request #3405 from BlackDex/fix-multiple-websocket-messages

Fix sending out multiple websocket notifications
pull/3427/head
Daniel García 2 years ago
committed by GitHub
parent
commit
c5bcc340fa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/db/models/organization.rs

1
src/db/models/organization.rs

@ -715,6 +715,7 @@ impl UserOrganization {
) )
) )
.select(users_organizations::all_columns) .select(users_organizations::all_columns)
.distinct()
.load::<UserOrganizationDb>(conn).expect("Error loading user organizations").from_db() .load::<UserOrganizationDb>(conn).expect("Error loading user organizations").from_db()
}} }}
} }

Loading…
Cancel
Save