Merge pull request #3484 from nextcloud/issue-3473-saving-webinar-settings

Saving Webinar Settings
This commit is contained in:
Marcel Hibbe 2023-12-01 13:33:16 +01:00 committed by GitHub
commit a8cacf1957
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -394,7 +394,8 @@ class ConversationInfoActivity :
} }
override fun onError(e: Throwable) { override fun onError(e: Throwable) {
// unused atm Log.e(TAG, "Failed to setLobbyForConversation", e)
Snackbar.make(binding.root, R.string.nc_common_error_sorry, Snackbar.LENGTH_LONG).show()
} }
}) })
} }

View File

@ -247,7 +247,7 @@ public class ApiUtils {
} }
public static String getUrlForRoomWebinaryLobby(int version, String baseUrl, String token) { public static String getUrlForRoomWebinaryLobby(int version, String baseUrl, String token) {
return getUrlForRoom(version, baseUrl, token) + "/webinary/lobby"; return getUrlForRoom(version, baseUrl, token) + "/webinar/lobby";
} }
public static String getUrlForRoomNotificationCalls(int version, String baseUrl, String token) { public static String getUrlForRoomNotificationCalls(int version, String baseUrl, String token) {