diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2024-04-20 13:44:52 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2024-04-20 13:44:52 -0400 |
commit | ad9af0bde674b4b5cfa8db4579da769a4cd63d33 (patch) | |
tree | f9c14f56b3f7263caab88b7b862152c250189979 /src/lpm.lua | |
parent | 21a64cbc810615d2c74bf2bf38a8f87500eb913e (diff) | |
download | lite-xl-plugin-manager-ad9af0bde674b4b5cfa8db4579da769a4cd63d33.tar.gz lite-xl-plugin-manager-ad9af0bde674b4b5cfa8db4579da769a4cd63d33.zip |
Fixed author variable position.
Diffstat (limited to 'src/lpm.lua')
-rw-r--r-- | src/lpm.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.lua b/src/lpm.lua index a4cb851..b74e81f 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -1929,7 +1929,7 @@ local function print_addon_info(type, addons, filters) dependencies = addon.dependencies, remote = addon.remote, description = addon.description, - author = addon.author or (addon:is_core(system_bottle) and "lite-xl") or nil, + author = addon.extra and addon.extra.author or (addon:is_core(system_bottle) and "lite-xl") or nil, mod_version = addon.mod_version or LATEST_MOD_VERSION, tags = addon.tags, type = addon.type, |