Skip to content

Commit

Permalink
Update ValidateAuth.php
Browse files Browse the repository at this point in the history
  • Loading branch information
puklipo committed Dec 2, 2024
1 parent 8b46136 commit f32dcf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FeedGenerator/ValidateAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Firebase\JWT\JWT;
use Firebase\JWT\Key;
use Mdanter\Ecc\Curves\CurveFactory;
use Mdanter\Ecc\EccFactory;
use Revolution\Bluesky\Crypto\DidKey;
use Revolution\Bluesky\Facades\Bluesky;
use Revolution\Bluesky\Socialite\Key\JsonWebToken;
Expand All @@ -25,7 +25,7 @@ public function __invoke(?string $jwt): ?string
// Used only when any ecc package is installed.
// Since there are multiple forked packages,
// the user can decide which one to use.
if (! class_exists(CurveFactory::class)) {
if (! class_exists(EccFactory::class)) {
return $did;
}

Expand Down

0 comments on commit f32dcf6

Please sign in to comment.