mirror of https://github.com/velour/catbase.git
when read through the whole set of quote rows before beginning adding back into the babbler
This commit is contained in:
parent
f28dabf0ba
commit
24f373d20f
|
@ -141,13 +141,19 @@ func (p *BabblerPlugin) getOrCreateBabbler(babbler string) (int64, error) {
|
||||||
//we'll just ignore this but the actual creation succeeded previously
|
//we'll just ignore this but the actual creation succeeded previously
|
||||||
return id, nil
|
return id, nil
|
||||||
}
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
|
||||||
|
tidbits := []string{}
|
||||||
for rows.Next() {
|
for rows.Next() {
|
||||||
var tidbit string
|
var tidbit string
|
||||||
err := rows.Scan(&tidbit)
|
err := rows.Scan(&tidbit)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return id, err
|
return id, err
|
||||||
}
|
}
|
||||||
|
tidbits = append(tidbits, tidbit)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tidbit := range tidbits {
|
||||||
p.addToMarkovChain(id, tidbit)
|
p.addToMarkovChain(id, tidbit)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue