Skip to content

Commit

Permalink
Tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
lbwexler committed Dec 27, 2024
1 parent cb5741e commit e5d97da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grails-app/services/io/xh/hoist/view/ViewService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ViewService extends BaseService {

/** Update state for this user */
void updateState(String type, String viewInstance, Map update, String username = username) {
def currBlob = jsonBlobService.find(type, STATE_BLOB_NAME, username),
def currBlob = jsonBlobService.find(type, STATE_BLOB_NAME, username, username),
currValue = parseObject(currBlob?.value),
newValue = [
currentView: currValue?.currentView ?: [:],
Expand Down

0 comments on commit e5d97da

Please sign in to comment.