We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24fa872 commit 954414bCopy full SHA for 954414b
1 file changed
app/app.go
@@ -414,6 +414,11 @@ func (app *CosmosApp) LoadHomePath() error {
414
return fmt.Errorf("failed to get output of binary: %w", err)
415
}
416
417
+ // determine if app is story protocol by looking at default home path
418
+ if strings.Contains(string(out), ".story") {
419
+ app.isStoryProtocol = true
420
+ }
421
+
422
// here we search for a specific line in the binary output when simply
423
// executed without arguments. In the output, the default home path
424
// is printed, which is parsed and used by KSYNC
0 commit comments