Skip to content

Commit

Permalink
バグ修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruhiel committed Apr 9, 2023
1 parent 899823b commit cf3431a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MHRiseModManager/Models/ModListManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public int Insert(string name, string targetFile, string url, string version, st
}
private ModInfo Find(int id)
{
Func<QueryFactory, ModInfo> action = (db) => db.Query(nameof(ModInfo).ToLower()).Where("id", id).First().Get<ModInfo>();
Func<QueryFactory, ModInfo> action = (db) => db.Query(nameof(ModInfo).ToLower()).Where("id", id).First<ModInfo>();

return Execute(action);
}
Expand Down

0 comments on commit cf3431a

Please sign in to comment.