Skip to content

Commit 77aaa45

Browse files
committed
Fix update cache
1 parent 0ad3500 commit 77aaa45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Updaters/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public function show_update_notification( $file, $plugin ) {
147147

148148
if ( ! isset( $update_cache->response[ $this->get_name() ] ) ) {
149149
if ( ! is_object( $update_cache ) ) {
150-
$update_cache = new stdClass();
150+
$update_cache = new \stdClass();
151151
}
152152
$update_cache->response[ $this->get_name() ] = $this->get_repo_api_data();
153153
}

0 commit comments

Comments
 (0)