~exprez135/cryptomator-libre

9a2662420bfec400c3ea95c12882d7ef5386ba2c — Nate Ijams 3 years ago 4712c4f + 6d8c4a8 release/1.5.2-libre
Merge branch 'release/1.5.1-libre' into release/1.5.2
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;
	}

}