[Fix for issue with single tweet in an incremental feed.
prb@mult.ifario.us**20080726042203] {
hunk ./src/Blog/Widgets/JsonUtilities.hs 54
-una _ = error "Can't un-array a non-JSArray value."
+una v = [ v ]
hunk ./src/Blog/Widgets/JsonUtilities.hs 58
+uns_ (JSString s) = [fromJSString s]
hunk ./src/Blog/Widgets/StreamOfConsciousness/Twitter.hs 66
- = ( case parse_utf8_json body of
+ = ( case parse_utf8_json $! body of
hunk ./src/Blog/Widgets/StreamOfConsciousness/Twitter.hs 159
- ; return $ "(" ++ s ++ ")" }
+ ; w <- many $ noneOf " "
+ ; return $ "(" ++ s ++ ")" ++ w }
}