Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(strainsyn.go): correct nil check to prevent potential null pointe…
…r exception The nil check was previously checking the 'Data' field of the 'tac' object. However, if 'tac' itself was null, this would result in a null pointer exception. The nil check has been corrected to check 'tac' instead of 'tac.Data', preventing potential crashes due to null pointer exceptions.
- Loading branch information