oh wait, i didn't believe it when it said it was broken

This commit is contained in:
Adam R Grey 2023-04-06 16:01:26 -04:00
parent 3816c29612
commit 9628a7b8b9

View File

@ -335,6 +335,10 @@ namespace ttrss_co_client
return new Tuple<bool, string>(false, $"no segments"); return new Tuple<bool, string>(false, $"no segments");
} }
} }
catch (Exception e)
{
return new Tuple<bool, string>(false, $"{e.ToString()} - {e.Message}");
}
} }
} }
} }