Skip to content

Commit

Permalink
Merge pull request #301 from amnezia-vpn/bugfix/camera-usage-ios
Browse files Browse the repository at this point in the history
Fix camera usage on iOS
  • Loading branch information
pokamest authored Aug 27, 2023
2 parents 0c6d193 + 96fdb92 commit 0822ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/ui/uilogic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void UiLogic::showOnStartup()
void UiLogic::onUpdateAllPages()
{
for (auto logic : m_logicMap) {
if (dynamic_cast<ClientInfoLogic*>(logic) || dynamic_cast<ClientManagementLogic*>(logic)) {
if (dynamic_cast<ClientInfoLogic*>(logic) || dynamic_cast<ClientManagementLogic*>(logic) || dynamic_cast<QrDecoderLogic*>(logic)) {
continue;
}
logic->onUpdatePage();
Expand Down

0 comments on commit 0822ee6

Please sign in to comment.