Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bmachek committed Sep 1, 2024
1 parent ebd4c0a commit 8d8f1c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion immich-plugin.lrplugin/ImmichAPI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ function ImmichAPI:getAlbumAssetIds(albumId)
if albumInfo ~= nil then
if albumInfo.assets ~= nil then
for i = 1, #albumInfo.assets do
tables.insert(assetIds, albumInfo.assets[i].id)
table.insert(assetIds, albumInfo.assets[i].id)
end
end
end
Expand Down

0 comments on commit 8d8f1c2

Please sign in to comment.