We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e78443 commit 620b292Copy full SHA for 620b292
markut.go
@@ -1174,8 +1174,13 @@ var Subcommands = map[string]Subcommand{
1174
cursor = edge
1175
cursor = cursor.(Object)["node"]
1176
cursor = cursor.(Object)["commenter"]
1177
- cursor = cursor.(Object)["login"]
1178
- fmt.Printf("%s,", cursor.(string))
+ if cursor != nil {
+ cursor = cursor.(Object)["login"]
1179
+ fmt.Printf("%s,", cursor.(string))
1180
+ } else {
1181
+ // Apparent this may happen if the account got deleted after the stream
1182
+ fmt.Printf("<DELETED>,")
1183
+ }
1184
1185
// cursor = edge
1186
// cursor = cursor.(Object)["node"]
0 commit comments