Skip to content

Commit

Permalink
Merge pull request #3484 from nextcloud/issue-3473-saving-webinar-set…
Browse files Browse the repository at this point in the history
…tings

Saving Webinar Settings
  • Loading branch information
mahibi authored Dec 1, 2023
2 parents 95b8ef3 + 1efa14e commit a8cacf1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,8 @@ class ConversationInfoActivity :
}

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()
}
})
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/nextcloud/talk/utils/ApiUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public static String getUrlForRoomReadOnlyState(int version, String baseUrl, Str
}

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) {
Expand Down

0 comments on commit a8cacf1

Please sign in to comment.