Commit 2e8a34b
fix: revert unnecessary null check that broke TypeScript
The null check at line 862 was incorrect. That code runs synchronously
(doesn't wait for async loader), so match exists there. Only the async
callback's finally block needs null check for race conditions.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>1 parent 90d4ba3 commit 2e8a34b
1 file changed
+9
-11
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
859 | 859 | | |
860 | 860 | | |
861 | 861 | | |
862 | | - | |
863 | | - | |
864 | | - | |
865 | | - | |
866 | | - | |
867 | | - | |
868 | | - | |
869 | | - | |
870 | | - | |
871 | | - | |
872 | | - | |
| 862 | + | |
| 863 | + | |
| 864 | + | |
| 865 | + | |
873 | 866 | | |
874 | 867 | | |
| 868 | + | |
| 869 | + | |
| 870 | + | |
| 871 | + | |
| 872 | + | |
875 | 873 | | |
876 | 874 | | |
877 | 875 | | |
| |||
0 commit comments