review: consistency use isAudioCall everywhere (instead of voiceOnly)

This commit is contained in:
Valere 2026-03-06 12:19:05 +01:00
parent 4406b50542
commit bad6085fb2
12 changed files with 19 additions and 19 deletions

View file

@ -28,10 +28,10 @@ class FakeCallWidgetSettingsProvider(
widgetId: String,
encrypted: Boolean,
direct: Boolean,
voiceOnly: Boolean,
isAudioCall: Boolean,
hasActiveCall: Boolean
): MatrixWidgetSettings {
providedBaseUrls += baseUrl
return provideFn(baseUrl, widgetId, encrypted, direct, voiceOnly, hasActiveCall)
return provideFn(baseUrl, widgetId, encrypted, direct, isAudioCall, hasActiveCall)
}
}