~jpgleeson/spawsh

453f66c3a18bf6f669218aac0d61ac101cb32d00 — Jack Gleeson 1 year, 7 months ago ea937f8
Better link handling
1 files changed, 4 insertions(+), 3 deletions(-)

M Program.cs
M Program.cs => Program.cs +4 -3
@@ 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