~exprez135/cryptomator-libre

6d8c4a8e5845c55ab2f0f75e84cbadc5650c4876 — Nate Ijams 3 years ago 8db889d release/1.5.1-libre
Free CryptoMator dark mode.
1 files changed, 6 insertions(+), 2 deletions(-)

M main/commons/src/main/java/org/cryptomator/common/LicenseHolder.java
M main/commons/src/main/java/org/cryptomator/common/LicenseHolder.java => main/commons/src/main/java/org/cryptomator/common/LicenseHolder.java +6 -2
@@ 64,7 64,9 @@ public class LicenseHolder {
		if (claims != null) {
			return claims.getSubject();
		} else {
			return null;
			/* Changed to return "Freedom"*/
			/*return null;*/
			return "Freedom";
		}
	}



@@ 73,7 75,9 @@ public class LicenseHolder {
	}

	public boolean isValidLicense() {
		return validLicenseProperty.get();
		/* Changed to always return that the license is valid.*/
		/*return validLicenseProperty.get();*/
		return true;
	}

}