Skip to content
This repository was archived by the owner on Dec 24, 2021. It is now read-only.

Commit ca1a5e0

Browse files
committed
feat: bug fixes
1 parent 3e65ac6 commit ca1a5e0

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

-26 KB
Binary file not shown.

comictracker/comictracker/Models/Issue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace comictracker.Models
88
{
99
public class Issue
1010
{
11-
public float? IssueNumber { get; set; }
11+
public string IssueNumber { get; set; }
1212

1313
public string Name { get; set; } = "";
1414

comictracker/comictracker/Program.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -754,9 +754,10 @@ private static void Id(int id)
754754
var comic = Service.GetVolumeDetails(id);
755755
ShowVolumeDetails(comic);
756756
}
757-
catch
757+
catch (Exception e)
758758
{
759-
WriteToConsole("Comic with that Id was not found.", true, ConsoleColor.Red, Console.BackgroundColor);
759+
//WriteToConsole("Comic with that Id was not found.", true, ConsoleColor.Red, Console.BackgroundColor);
760+
WriteToConsole(e.Message, true, ConsoleColor.Red, Console.BackgroundColor);
760761
}
761762
}
762763
}

comictracker/comictracker/comictracker.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<ItemGroup>
4141
<Reference Include="CVNetCore, Version=1.0.3.0, Culture=neutral, processorArchitecture=MSIL">
4242
<SpecificVersion>False</SpecificVersion>
43-
<HintPath>.\CVNetCore.dll</HintPath>
43+
<HintPath>..\..\..\CVNetCore-master\CVNetCore-master\CVNetCore\bin\Debug\net46\CVNetCore.dll</HintPath>
4444
</Reference>
4545
<Reference Include="Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
4646
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>

0 commit comments

Comments
 (0)