Skip to content

Commit bbe15d0

Browse files
authored
fix: avoid parent call on Traits (#151)
* fix: avoid parent call on Train classes * chore: fix code style --------- Co-authored-by: mahiarirani <[email protected]>
1 parent e4d59b3 commit bbe15d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AppInfo/Telemetry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected function configureTelemetry(): void {
4545
if ($config->getSystemValue('telemetry.enabled') && $isSupported) {
4646
/** @var IAppManager $appManager */
4747
$appManager = $this->container->get(IAppManager::class);
48-
$appInfo = $appManager->getAppInfo(parent::NAME);
48+
$appInfo = $appManager->getAppInfo(Application::NAME);
4949
$pluginVersion = $appInfo['version'] ?? 'unknown';
5050

5151
/** @var IURLGenerator $urlGenerator */

0 commit comments

Comments
 (0)