Skip to content

Commit

Permalink
Fix index out of range
Browse files Browse the repository at this point in the history
  • Loading branch information
joente committed Nov 8, 2024
1 parent 586c75f commit 74688c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion checkQstar.go
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ func readFilesystem(filesystem string) (*params, error) {
(*replica)["local_intergral_volume"] = fields[2]
} else if len(fields) == 2 {
(*replica)["location"] = fields[0]
(*replica)["local_intergral_volume"] = fields[2]
(*replica)["local_intergral_volume"] = fields[1]
}
}
online := false
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package main

const version = "0.1.5"
const version = "0.1.6"

0 comments on commit 74688c6

Please sign in to comment.