Log when other type of author
All checks were successful
the build was successful

This commit is contained in:
Peter Stuifzand 2019-02-08 23:11:01 +01:00
parent 77c375e7d2
commit ddb154e4d3
Signed by: peter
GPG Key ID: 374322D56E5209E8

View File

@ -195,6 +195,8 @@ func simplifyCard(v interface{}) (microsub.Card, bool) {
return simplifyCardFromMicroformat(author, t)
case string:
return simplifyCardFromString(author, t)
default:
log.Printf("simplifyCard: different type %T\n", t)
}
return author, false