handle case where attributedto is array of strings
This commit is contained in:
parent
d0ec4da425
commit
bcd4cba30d
|
@ -394,6 +394,10 @@ func extractattrto(obj junk.Junk) string {
|
|||
return id
|
||||
}
|
||||
}
|
||||
s, ok := a.(string)
|
||||
if ok {
|
||||
return s
|
||||
}
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue