Skip to content
This repository was archived by the owner on Jan 1, 2023. It is now read-only.

Commit c7443f6

Browse files
Fix null check
Added screenshots
1 parent 7832ad1 commit c7443f6

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

art/Screenshot2.png

3.04 KB
Loading

art/Screenshot3.png

59.6 KB
Loading

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
1919

20-
VERSION_NAME=1.1
21-
VERSION_CODE=6
20+
VERSION_NAME=1.2
21+
VERSION_CODE=7

mobile/src/main/java/org/codechimp/ttw/PluginActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ private void resetTapPattern() {
210210
@Override
211211
public void finish() {
212212
if (!isCanceled()) {
213-
if (!patternName.isEmpty()) {
213+
if (patternName != null && !patternName.isEmpty()) {
214214
final Intent resultIntent = new Intent();
215215

216216
/*

0 commit comments

Comments
 (0)