diff --git a/src/api/parser/src/data/post.js b/src/api/parser/src/data/post.js index a8c415a735..6003f4063e 100644 --- a/src/api/parser/src/data/post.js +++ b/src/api/parser/src/data/post.js @@ -145,7 +145,7 @@ class Post { article.date = article.pubdate; } - // All the Youtube feed return an array off html so we will need to convert it to a string so as to process and sanitize it + // All the YouTube feed return an array off html so we will need to convert it to a string so as to process and sanitize it if (Array.isArray(article.content)) { article.content = article.content.join(' '); } diff --git a/src/backend/data/post.js b/src/backend/data/post.js index a882e34427..b964c6f18a 100644 --- a/src/backend/data/post.js +++ b/src/backend/data/post.js @@ -149,7 +149,7 @@ class Post { article.date = article.pubdate; } - // All the Youtube feed return an array off html so we will need to convert it to a string so as to process and sanitize it + // All the YouTube feed return an array off html so we will need to convert it to a string so as to process and sanitize it if (Array.isArray(article.content)) { article.content = article.content.join(' '); } diff --git a/src/db/prisma/schema.prisma b/src/db/prisma/schema.prisma index c842af8ff1..1683891226 100644 --- a/src/db/prisma/schema.prisma +++ b/src/db/prisma/schema.prisma @@ -19,7 +19,7 @@ model feeds { id String // A short hashed id generated from the URL by Satellite, user_id String? // optional, a user can claim an existing feed when they register wiki_author_name String? // wiki owner of a feed, maybe unused when the feed is linked with an actual user - html_url String? //actual URL the feed refers to, could be a blog URL, a Youtube or Twitch channel + html_url String? //actual URL the feed refers to, could be a blog URL, a YouTube or Twitch channel type FeedType? @default(blog) invalid Boolean? @default(false) flagged Boolean? @default(false) diff --git a/src/web/app/src/components/SignUp/Forms/ChannelFeeds.tsx b/src/web/app/src/components/SignUp/Forms/ChannelFeeds.tsx index a4d57deabb..5406851e3c 100644 --- a/src/web/app/src/components/SignUp/Forms/ChannelFeeds.tsx +++ b/src/web/app/src/components/SignUp/Forms/ChannelFeeds.tsx @@ -218,7 +218,7 @@ const ChannelFeeds = connect<{}, SignUpForm>((props) => { return (