Fix bug
This commit is contained in:
parent
70c72a45b7
commit
1d7abe4023
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ class SupportDevWidget extends StatelessWidget {
|
|||
builder: (context, snapshot) {
|
||||
if (snapshot.hasData) {
|
||||
final subscription = snapshot.data;
|
||||
if (subscription != null && subscription.productID != "free") {
|
||||
if (subscription != null && subscription.productID == "free") {
|
||||
return GestureDetector(
|
||||
onTap: () {
|
||||
launchUrl(Uri.parse("https://ente.io"));
|
||||
|
|
Loading…
Add table
Reference in a new issue