shithub: hell

Download patch

ref: ffcf37cdb09d8b96513e09a82e1c947215f24d02
parent: 20315e1a47720b90390ee5093e5d77dbc7b9f82c
author: penny <penny@limitedideas.org>
date: Wed Nov 5 15:49:25 EST 2025

fix account resolution crash

--- a/commands.go
+++ b/commands.go
@@ -173,7 +173,7 @@
 	// Command needs us to resolve @user@domain targets as indexes
 	if flags&acc_resolve != 0 {
 		data.account = data.lookupAccount(loader)
-		if data.status != nil && data.status.ID != data.account.ID {
+		if data.status != nil && data.account != nil && data.status.ID != data.account.ID {
 			data.status = nil
 		}
 	}
--