Skip to content

Commit

Permalink
fix: invalid logic
Browse files Browse the repository at this point in the history
  • Loading branch information
poi-vrc committed Apr 24, 2024
1 parent 011a80c commit 4b6a8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/Detail/NDMF/ScriptRecompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private static bool IsLastRecompileMinuteAgo()
try
{
var dateTime = DateTime.Parse(dateTimeLine);
if ((DateTime.Now - dateTime).TotalMinutes > 1)
if ((DateTime.Now - dateTime).TotalMinutes <= 1)
{
return true;
}
Expand Down

0 comments on commit 4b6a8ef

Please sign in to comment.