Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
plugins/porkbun: fix uninitiazlied variable
I still don't understand what's going on in this function ... Signed-off-by: Joachim Wiberg <[email protected]>
- Loading branch information
i is used by check_success for no reason.
check_success(json, tokens + i + 1, num_tokens) should be replaced with
check_success(json, tokens + 1, num_tokens) since this was the reason for the warning