diff --git a/src/client/app/common/views/widgets/rss.vue b/src/client/app/common/views/widgets/rss.vue index eca23d022..7ac453e45 100644 --- a/src/client/app/common/views/widgets/rss.vue +++ b/src/client/app/common/views/widgets/rss.vue @@ -53,9 +53,12 @@ export default define({ }); }, setting() { - this.props.url =window.prompt('URL', this.props.url); - this.save(); - this.fetch(); + const url = window.prompt('URL', this.props.url); + if (url && url != '') { + this.props.url = url; + this.save(); + this.fetch(); + } } } });