mirror of
https://github.com/AsamK/signal-cli.git
synced 2026-07-29 00:59:26 +00:00
Prevent incorrect error log about saving failed if an exception was thrown
This commit is contained in:
parent
9a775171b5
commit
c0f5ff8805
@ -585,7 +585,9 @@ public class SignalAccount implements Closeable {
|
||||
|
||||
@Override
|
||||
public void close() throws IOException {
|
||||
save();
|
||||
if (fileChannel.isOpen()) {
|
||||
save();
|
||||
}
|
||||
synchronized (fileChannel) {
|
||||
try {
|
||||
lock.close();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user