소스 검색

Fix Official icon not fetched on Preview

Bubka 3 년 전
부모
커밋
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);
     }