Skip to content

Commit

Permalink
fix: invalid logic for script recompiler
Browse files Browse the repository at this point in the history
  • Loading branch information
poi-vrc committed Apr 24, 2024
1 parent 011a80c commit 57e4739
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.chocopoi.vrc.dressingframework",
"displayName": "DressingFramework",
"version": "2.1.1-beta",
"version": "2.1.1-beta.1",
"unity": "2019.4",
"description": "A framework that assembles DressingTools and provides interfaces for third-party developers.",
"author": {
Expand Down

0 comments on commit 57e4739

Please sign in to comment.