We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbc54ec commit f0acf7dCopy full SHA for f0acf7d
Assets/Plugins/StreamChat/Samples/ClientAndUsersCodeSamples.cs
@@ -120,7 +120,7 @@ public async Task UserUpdates()
120
};
121
122
// Upsert means: update user with a given ID or create a new one if it doesn't exist
123
- var users = await Client.UpsertUsers(new[] { createOrUpdateUser });
+ var users = await Client.UpsertUsersAsync(new[] { createOrUpdateUser });
124
}
125
126
public async Task UserUpdatesMultiple()
@@ -150,7 +150,7 @@ public async Task UserUpdatesMultiple()
150
151
152
153
- var users = await Client.UpsertUsers(usersToCreateOrUpdate);
+ var users = await Client.UpsertUsersAsync(usersToCreateOrUpdate);
154
155
156
#endregion
0 commit comments