Browse Source

Fix Official icon not fetched on Preview

Bubka 3 years ago
parent
commit
ce842f3fc0
1 changed files with 1 additions and 1 deletions
  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);
     }