diff --git a/library/org/oauth.php b/library/org/oauth.php index 0221d9ce..1365bff2 100644 --- a/library/org/oauth.php +++ b/library/org/oauth.php @@ -36,7 +36,7 @@ class Oauth */ public static function connect($type, $options = []) { - $class = 'think\\oauth\\driver\\' . strtolower($type); + $class = '\\org\\oauth\\driver\\' . strtolower($type); self::$handler = new $class($options); return self::$handler; }