Skip to content

Commit

Permalink
Fix module + bump version
Browse files Browse the repository at this point in the history
Fixed module error on create

Bumped GVE version
  • Loading branch information
Neriderc committed Nov 26, 2024
1 parent 051a228 commit e96b7d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions module.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class GVExport extends AbstractModule implements ModuleCustomInterface, ModuleCh
use ModuleCustomTrait;
use ModuleChartTrait;
use ModuleConfigTrait;
public const CUSTOM_VERSION = '2.1.23';
public const CUSTOM_VERSION = '2.2.1';
public const CUSTOM_MODULE = "GVExport";
public const CUSTOM_LATEST = 'https://raw.githubusercontent.com/Neriderc/' . self::CUSTOM_MODULE. '/main/latest-version.txt';
public const SUPPORT_URL = 'https://github.com/Neriderc/GVExport';
Expand Down Expand Up @@ -433,4 +433,5 @@ private function strip_param_from_url($url, $param): string
}
}

return Webtrees::make(GVExport::class);
$moduleService = Registry::container()->get(ModuleService::class);
return new GVExport($moduleService);

0 comments on commit e96b7d0

Please sign in to comment.