diff options
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textual.cc b/src/textual.cc index 04e90e45..258e2560 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -1440,7 +1440,7 @@ post_t * instance_t::parse_post(char * line, // Parse the account name - if (! *p) + if (! *p || *p == ';') throw parse_error(_("Posting has no account")); char * next = next_element(p, true); |