I upgraded to Q2A 1.4.1 (from 1.3) and on every question I get the error:
Fatal error: Call to a member function get_html() on a non-object in /[my q2a path]/qa-include/qa-app-format.php on line 306
I did have this problem with the upgrade but fixed it and everything else went smoothly. The list of questions on the home page displays fine and the admin section works. Just individual Q's don't work.
UPDATE: after a little dive into the code I found it's because I had a completely fresh install and my Markdown plugin was missing. In other words, if a post is registered as the "markdown" format, Q2A breaks if there is no viewer for that format and doesn't fall back to the basic text viewer.
Patch
Between lines 304 and 306, add
if ( $viewer===null )
$viewer=qa_load_viewer($post['content'], '');
Between lines 1343 and 1344, add
if ( $viewer===null )
$viewer=qa_load_viewer($content, '');
I think that takes care of it.