Browse Source

Fix Official icon not fetched on Preview

Bubka 3 năm trước cách đây
mục cha
commit
ce842f3fc0
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);
     }