()
| 344 | } |
| 345 | |
| 346 | func (resource *Resource) IsSound() bool { |
| 347 | if resource.FinishedDownloading() { |
| 348 | resource.Parse() |
| 349 | return strings.Contains(resource.MimeType, "audio") |
| 350 | } |
| 351 | return false |
| 352 | } |
| 353 | |
| 354 | var playingSounds = map[string]time.Time{} |
| 355 |
no test coverage detected