Skip to content

Commit ffcafa1

Browse files
authored
fix: set default dorf to 2 when currentDorf is 0 (#167)
1 parent 7185d0c commit ffcafa1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MainCore/Commands/Navigate/ToDorfCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ CancellationToken cancellationToken
1717
var currentDorf = GetCurrentDorf(currentUrl);
1818
if (dorf == 0)
1919
{
20-
if (currentDorf == 0) dorf = 1;
20+
if (currentDorf == 0) dorf = 2;
2121
else dorf = currentDorf;
2222
}
2323

0 commit comments

Comments
 (0)