use non-deprecated variant of get_schema_version()

This commit is contained in:
Andrew Dolgov 2023-08-03 07:24:48 +03:00
parent bd95325f8d
commit ba6a912abd
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
1 changed files with 1 additions and 1 deletions

View File

@ -642,7 +642,7 @@ class PluginHost {
private function load_data(): void {
$scope = Tracer::start(__METHOD__);
if ($this->owner_uid && !$this->data_loaded && get_schema_version() > 100) {
if ($this->owner_uid && !$this->data_loaded && Config::get_schema_version() > 100) {
$sth = $this->pdo->prepare("SELECT name, content FROM ttrss_plugin_storage
WHERE owner_uid = ?");
$sth->execute([$this->owner_uid]);