]> Untitled Git - lemmy-ui.git/commitdiff
Fixing empty post url. Fixes #70
authorDessalines <tyhou13@gmx.com>
Tue, 3 Nov 2020 15:53:18 +0000 (09:53 -0600)
committerDessalines <tyhou13@gmx.com>
Tue, 3 Nov 2020 15:53:18 +0000 (09:53 -0600)
src/shared/components/post-form.tsx
src/shared/utils.ts

index c383c9b8a0b41ea08b6b81e4f19d5d186a181aff..3c7df35823e6fa5c834e96f835fc2af7e05ff7e3 100644 (file)
@@ -366,7 +366,7 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
     event.preventDefault();
 
     // Coerce empty url string to undefined
-    if (i.state.postForm.url && i.state.postForm.url === '') {
+    if (i.state.postForm.url !== undefined && i.state.postForm.url === '') {
       i.state.postForm.url = undefined;
     }
 
index 228aa9a866c3a19aa58830880cf0ad0217b4a2de..11a04b918c9a93c43f4ecf61bfe6d963f8402e35 100644 (file)
@@ -270,13 +270,8 @@ export function isVideo(url: string) {
   return videoRegex.test(url);
 }
 
-// TODO this broke
 export function validURL(str: string) {
-  // try {
   return !!new URL(str);
-  // } catch {
-  // return false;
-  // }
 }
 
 export function communityRSSUrl(actorId: string, sort: string): string {