Skip to content

Commit

Permalink
Updated namespace and version check for update.
Browse files Browse the repository at this point in the history
  • Loading branch information
shinde-rahul committed Sep 15, 2023
1 parent d6bde76 commit a752a7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
return [
'name' => 'GoTo Integration by Leuchtfeuer',
'description' => 'Enables integration with Mautic supported GoTo collaboration products.',
'version' => '3.0.0',
'version' => '3.0.1',
'author' => 'Leuchtfeuer Digital Marketing GmbH',
'routes' => [
'public' => [
Expand Down
2 changes: 1 addition & 1 deletion EventListener/PluginEventSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function onPluginUpdate(PluginUpdateEvent $event): void
return;
}

if ('2.2.1' === $event->getOldVersion()) {
if ('3.0.0' === $event->getOldVersion()) {
$this->updateSegments();
}
}
Expand Down

0 comments on commit a752a7e

Please sign in to comment.