This commit is contained in:
Inex Code 2022-05-05 19:51:02 +00:00
parent 94ac7cfcb6
commit 532b4eb6f1
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ Future<void> _importPosts(fileUri) async {
if (line.isEmpty && post != '') {
posts.add(post);
print('Added post: $post');
post = '';
} else {
post += '$line\n';
}