Я не знаю, почему ошибка появляется сегодня, но она работала вчера.
func queryAUser() {
let docRef = self.db.collection("Users").document(userID).collection("userdata").document("userdata")
docRef.getDocument { (document, error) in
if let document = document, document.exists {
let aUser = DBData.Usersdata(aDoc: document)
self.local_userdata = aUser
} else {
print("Document does not exist")
}
}
}
Я не могу решить эту ошибку с какой-то статьей в stackoverflow?
Может ли кто-нибудь помочь мне сделать это?