You are here

function blazy_update_8208 in Blazy 8.2

Removed deprecated native settings as per #3213258.

File

./blazy.install, line 103
Installation actions for Blazy.

Code

function blazy_update_8208() {
  $config = \Drupal::configFactory()
    ->getEditable('blazy.settings');
  $config
    ->clear('native');
  $config
    ->save(TRUE);
}