shithub: furgit

Download patch

ref: 3c26f0a4e36d8d597dc25e12eb40e9ef35a098ae
parent: b252c04f6b257b32fc6457b7f58cc1bef91eb8d5
author: Runxi Yu <me@runxiyu.org>
date: Sat Mar 7 21:27:08 EST 2026

protocol/v0v1/server/receivepack: Nolint nestif here

--- a/protocol/v0v1/server/receivepack/report_status.go
+++ b/protocol/v0v1/server/receivepack/report_status.go
@@ -69,7 +69,7 @@
 		unpackResult = result.UnpackError
 	}
 
-	if !session.negotiated.SideBand64K {
+	if !session.negotiated.SideBand64K { //nolint:nestif
 		err := session.base.WriteData(fmt.Appendf(nil, "unpack %s\n", unpackResult))
 		if err != nil {
 			return err
--