modify plugin name

This commit is contained in:
2022-02-25 15:54:57 +08:00
parent 7fd29e4982
commit 70271e3db4
2 changed files with 2 additions and 5 deletions
-3
View File
@@ -326,9 +326,6 @@ if (!function_exists('isUrl')) {
if (!empty($query)) $path .= '?' . $query;
if (!empty($fragment)) $path .= '#' . $fragment;
unset($outPut);
return [$scheme == 'https', $host, $port, $path];
}
+2 -2
View File
@@ -134,9 +134,9 @@ class Context extends BaseContext
return;
}
if (Coroutine::getCid() === -1) {
unset(static::$_contents[$id]);
static::$_contents[$id] = null;
} else {
unset(Coroutine::getContext($coroutineId)[$id]);
Coroutine::getContext($coroutineId)[$id] = null;
}
}