(fix) small code refactoring

This commit is contained in:
Ludovic Marcotte 2015-08-28 20:11:21 -04:00
parent 3fdabf8671
commit fb4889a15e
2 changed files with 3 additions and 6 deletions

View file

@ -124,11 +124,8 @@
NSString *s;
s = [self mailAccounts];
response = [self responseWithStatus: 200];
[response setHeader: @"text/plain; charset=utf-8"
forKey: @"content-type"];
[response appendContentString: s];
response = [self responseWithStatus: 200
andString: s];
return response;
}