@@ 188,7 188,6 @@ namespace spawsh
}
else
{
- Console.WriteLine("here");
linksInPage = buildLinkSet(LineBuffer);
}
@@ 282,8 281,6 @@ namespace spawsh
inputString = broken[1];
}
- Console.WriteLine("here - " + inputString);
-
if (inputString.Contains("gemini://"))
{
inputString = inputString.Trim();
@@ 351,6 348,10 @@ namespace spawsh
try
{
description = holder.Split('\t')[1];
+ if (description == null || description == "")
+ {
+ description = holder.Split(' ')[1];
+ }
holder = holder.Split('\t')[0].Substring(1);
}
catch