Added call to test function for wiki API.

This commit is contained in:
2025-05-27 14:46:50 -04:00
parent 2154a7d58b
commit a817541c4e

View File

@@ -14,9 +14,9 @@ namespace osrs_toolbox
TestCall = new RelayCommand(DoTest);
}
private void DoTest(object obj)
private async void DoTest(object obj)
{
TestOutput = await Wiki.TestAsync();
}
}
}