Просмотр исходного кода

Fix Official icon not fetched on Preview

Bubka 3 лет назад
Родитель
Сommit
ce842f3fc0
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      app/Api/v1/Controllers/TwoFAccountController.php

+ 1 - 1
app/Api/v1/Controllers/TwoFAccountController.php

@@ -142,7 +142,7 @@ class TwoFAccountController extends Controller
     public function preview(TwoFAccountUriRequest $request)
     {
         $twofaccount = new TwoFAccount;
-        $twofaccount->fillWithURI($request->uri, $request->custom_otp === TwoFAccount::STEAM_TOTP, true);
+        $twofaccount->fillWithURI($request->uri, $request->custom_otp === TwoFAccount::STEAM_TOTP);
 
         return new TwoFAccountStoreResource($twofaccount);
     }