Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -282,7 +282,7 @@ with gr.Blocks() as demo:
|
|
282 |
def on_start_click(target_urls_str, storage_loc, feed_enabled):
|
283 |
global history, url_monitoring_intervals
|
284 |
try:
|
285 |
-
target_urls = [url.strip() for url
|
286 |
if not all(target_urls):
|
287 |
return "Please enter valid URLs.", history
|
288 |
|
|
|
282 |
def on_start_click(target_urls_str, storage_loc, feed_enabled):
|
283 |
global history, url_monitoring_intervals
|
284 |
try:
|
285 |
+
target_urls = [url.strip() for url in target_urls_str.split(",")]
|
286 |
if not all(target_urls):
|
287 |
return "Please enter valid URLs.", history
|
288 |
|