374ec482cd
don't republish thumbs that were published from previous channels
10 lines
143 B
Go
10 lines
143 B
Go
package util
|
|
|
|
func StringInSlice(a string, list []string) bool {
|
|
for _, b := range list {
|
|
if b == a {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|