You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
client.dart for talk API specifies the following baseUrl for talk management:
final _baseUrl = '$baseUrl/ocs/v2.php/apps/spreed/api/v1';
However, though this may be true for _guestManagement, _messageManagement it does not apply to
_conversationManagement anymore.
The correct baseUrl would be:
final _baseUrl4 = '$baseUrl/ocs/v2.php/apps/spreed/api/v4';
_conversationManagement = ConversationManagement(network, _baseUrl4);
Furthermore 2 members marked as required in Conversation have been removed, therefore they should be removed in order for the talk API to be intact again for new Nextcloud Talk version.
The 2 members affected, that should be removed, are:
/// The count of active users
final int userCount;
/// The number of active guests
final int guestCount;
I tried this on my local machine and the Talk API basic functions work again. Hope it helps in keeping future compatibility.
The text was updated successfully, but these errors were encountered:
client.dart for talk API specifies the following baseUrl for talk management:
However, though this may be true for _guestManagement, _messageManagement it does not apply to
_conversationManagement anymore.
The correct baseUrl would be:
Furthermore 2 members marked as required in Conversation have been removed, therefore they should be removed in order for the talk API to be intact again for new Nextcloud Talk version.
The 2 members affected, that should be removed, are:
I tried this on my local machine and the Talk API basic functions work again. Hope it helps in keeping future compatibility.
The text was updated successfully, but these errors were encountered: