opentype Posted December 4, 2023 Share Posted December 4, 2023 Anyone knows where this counter is stored in the database? With the Marketplace being removed and the plugins not having an update URL, this notification would stay there forever. I already cleared the update data in the plugins table, but the counter seems to be stored somewhere else. Link to comment Share on other sites More sharing options...
Solution Adriano Faria Posted December 4, 2023 Solution Share Posted December 4, 2023 (edited) Clear the cache. case 'plugins': foreach( \IPS\Plugin::plugins() as $plugin ) { if( $plugin->update_check_data ) { $data = json_decode( $plugin->update_check_data, TRUE ); if( !empty( $data['longversion'] ) AND $data['longversion'] > $plugin->version_long ) { $count++; } } } break; \IPS\Data\Store::i()->$key = $count; return (int) \IPS\Data\Store::i()->$key; } Edited December 4, 2023 by Adriano Faria opentype 1 Link to comment Share on other sites More sharing options...
opentype Posted December 4, 2023 Author Share Posted December 4, 2023 Adriano Faria 1 Link to comment Share on other sites More sharing options...
Recommended Posts