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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
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() |
|
|
}} |
|
|
}} |
|
|
} |
|
|
} |
|
|