1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-21 01:24:21 +00:00

Projucer: Attempt to validate licence stored on disk if auth token is present without version

This commit is contained in:
ed 2021-05-11 09:20:07 +01:00
parent 533f68219b
commit 9f295539c1

View file

@ -179,7 +179,7 @@ private:
//==============================================================================
void checkLicense()
{
if (state.isSignedIn() && ! state.isGPL())
if (state.authToken.isNotEmpty() && ! state.isGPL())
{
auto completionCallback = [this] (LicenseQueryThread::ErrorMessageAndType error,
LicenseState updatedState)