We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c50ba6 commit 3626e1aCopy full SHA for 3626e1a
src/Models/Traits/AppServiceTrait.php
@@ -30,8 +30,8 @@ public static function handleAppData(array $data)
30
'name' => $data['name'],
31
'description' => $data['description'],
32
'version' => $data['version'],
33
- 'author' => $data['author'],
34
- 'author_link' => $data['authorLink'] ?? null,
+ 'author' => $data['author'] ?? $data['developer'] ?? 'Developer',
+ 'author_link' => $data['authorLink'] ?? $data['website'] ?? null,
35
'panel_usages' => $data['panelUsages'] ?? null,
36
'access_path' => $data['accessPath'] ?? null,
37
'settings_path' => $data['settingsPath'] ?? null,
0 commit comments