This commit is contained in:
fenwick67 2023-01-10 20:08:17 -05:00
parent 870b0b4041
commit 32c8b2b33c
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
node_modules node_modules
*.atom *.atom
.vscode

View File

@ -174,7 +174,7 @@ async function itemsForFeed(opts,user,feed) {
}).map((a)=>{ }).map((a)=>{
return { return {
name:a.name, name:a.name,
type:a.mediaType, type:a.mediaType || '',
url:a.url url:a.url
} }
}); });