Skip to content

Commit

Permalink
Fix missing taglist.json bug
Browse files Browse the repository at this point in the history
  • Loading branch information
shunjieee committed Apr 4, 2024
1 parent 78b5794 commit d7dd41b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/seedu/address/logic/LogicManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ public CommandResult execute(String commandText) throws AccountException, Comman
try {
storage.saveAddressBook(model.getAddressBook());
storage.saveUserPrefs(model.getUserPrefs());
storage.saveTagList(model.getTagList());
} catch (AccessDeniedException e) {
throw new CommandException(String.format(FILE_OPS_PERMISSION_ERROR_FORMAT, e.getMessage()), e);
} catch (IOException ioe) {
Expand Down

0 comments on commit d7dd41b

Please sign in to comment.