Skip to content

Commit

Permalink
fix: use 7 letter for the commit sha
Browse files Browse the repository at this point in the history
  • Loading branch information
wiiznokes committed Aug 29, 2024
1 parent e05afdf commit 08f348a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ fun MainSettingsScreen(
isLast = true
) {
var version = BuildConfig.VERSION_NAME
version += "-${BuildConfig.GIT_HASH.substring(0..7)}"
version += "-${BuildConfig.GIT_HASH.substring(0..6)}"
version += if (BuildConfig.DEBUG) "-debug" else "-release"
val clipboardManager = LocalClipboardManager.current

Expand Down

0 comments on commit 08f348a

Please sign in to comment.