mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
Temporarily fix bad audio
This commit is contained in:
parent
69379f3c1f
commit
2166dd279a
1 changed files with 1 additions and 1 deletions
|
|
@ -474,7 +474,7 @@ public:
|
|||
absl::optional<int64_t> estimatedCaptureTimeNS
|
||||
) override {
|
||||
if (!_audioTransports.empty()) {
|
||||
for (size_t i = 0; i < _audioTransports.size(); i++) {
|
||||
for (size_t i = _audioTransports.size() - 1; i < _audioTransports.size(); i++) {
|
||||
auto result = _audioTransports[_audioTransports.size() - 1]->RecordedDataIsAvailable(
|
||||
audioSamples,
|
||||
nSamples,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue