fix: using string as array causes error#1396
fix: using string as array causes error#1396atymic merged 1 commit intoSocialiteProviders:masterfrom
Conversation
|
Can you post stacktrace? |
|
Here is TypeError - Internal Server ErrorCannot access offset of type string on string PHP 8.4.13 Stack Trace0 - vendor/socialiteproviders/vkid/Provider.php:59 RequestGET /auth/vk/callback Headers
Route Contextcontroller: App\Http\Controllers\Auth\VKOAuthController@callback Route ParametersNo route parameter data available. Database Queries
|
Problem
The code was attempting to use string values as arrays, which caused runtime errors.
Solution
Updated the logic to properly handle strings without treating them as arrays.
Notes