diff --git a/statusscreen-sl.go b/statusscreen-sl.go index fe56ba7..aa1c45b 100644 --- a/statusscreen-sl.go +++ b/statusscreen-sl.go @@ -78,6 +78,11 @@ func (sl *SL) GetOutput() []string { table.Render() + // Go through deviations and add it after the table + for _, v := range sl.lastResponse.ResponseData.StopPointDeviations { + b.WriteString(v.Deviation.Text + "\n") + } + return strings.Split(b.String(), "\n") }