Skip to content

Commit

Permalink
Fix merge mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
lbwexler committed Dec 27, 2024
1 parent a879b50 commit c6a33ac
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 @@ -56,7 +56,7 @@ class ViewService extends BaseService {
/** Update state for this user */
void updateState(String type, String viewInstance, Map update) {
def currBlob = jsonBlobService.find(type, STATE_BLOB_NAME, username),
currValue = parseObject(currBlob.value),
currValue = parseObject(currBlob?.value),
newValue = [
currentView: currValue?.currentView ?: [:],
userPinned : currValue?.userPinned ?: [:],
Expand Down

0 comments on commit c6a33ac

Please sign in to comment.