Skip to content

Commit

Permalink
Merge pull request #27 from nfhipona/patch/bug-fix
Browse files Browse the repository at this point in the history
Fix isAutoStoringEnabled not being utilized
  • Loading branch information
nfhipona committed Sep 5, 2023
2 parents b367ef0 + e7f12c0 commit 1c03d7f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Pod/Classes/ACTFDomain.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ public class ACTFDomain: Codable {

public func updateWeightUsage() {
weight += 1
store()

if isAutoStoringEnabled {
store()
}
}
}

Expand Down

0 comments on commit 1c03d7f

Please sign in to comment.