Coffee journaling on ATProto (alpha) alpha.arabica.social
coffee
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: allow bean process field to be empty

+1 -4
+1 -4
internal/models/models.go
··· 402 402 403 403 // IsIncomplete returns true if the bean is missing key fields beyond name/origin. 404 404 func (b *Bean) IsIncomplete() bool { 405 - return b.RoasterRKey == "" || b.RoastLevel == "" || b.Process == "" 405 + return b.RoasterRKey == "" || b.RoastLevel == "" 406 406 } 407 407 408 408 // MissingFields returns a human-readable list of missing fields. ··· 413 413 } 414 414 if b.RoastLevel == "" { 415 415 missing = append(missing, "roast level") 416 - } 417 - if b.Process == "" { 418 - missing = append(missing, "process") 419 416 } 420 417 return missing 421 418 }