Extract TagItem class, Update Nullable

This commit is contained in:
ChsBuffer
2021-03-27 17:40:18 +08:00
parent 2ab693facf
commit 3cbd5af9a3
17 changed files with 214 additions and 80 deletions

View File

@@ -190,7 +190,7 @@ namespace Netch.Controllers
string fileName;
try
{
fileName = p.MainModule!.FileName;
fileName = p.MainModule?.FileName ?? throw new Exception(); // TODO what's this exception?
}
catch (Exception e)
{