Skip to content

Commit

Permalink
Merge pull request #1600 from atsign-foundation/why
Browse files Browse the repository at this point in the history
fix: error atsign doesn't exist
  • Loading branch information
CurtlyCritchlow authored Dec 7, 2024
2 parents 421b2be + 1bbaab9 commit 4f7ac8a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ class _ActivateAtsignDialogState extends State<ActivateAtsignDialog> {
});
} else {
if (!mounted) return;
if (status == ActivationStatus.preparing) {
Navigator.of(context).pop(AtOnboardingResult.error(message: "@${jsonDecode(res.body)["message"]}"));
return;
}
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
backgroundColor: Colors.red,
Expand Down
21 changes: 10 additions & 11 deletions packages/dart/npt_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,16 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.1.3+0
version: 1.1.4+4
msix_config:
display_name: "NoPorts Desktop"
publisher_display_name: Atsign Inc
identity_name: TheCompany.NoPortsDesktop
publisher: CN=BBFE1D0B-F713-4C7F-B375-5EA851CBB1FF
msix_version: 1.1.4.4
logo_path: "assets/logo.png"
capabilities: internetClient
store: true

environment:
sdk: ^3.5.0
Expand Down Expand Up @@ -132,16 +141,6 @@ flutter:
# For details regarding fonts from package dependencies,
# see https://flutter.dev/to/font-from-package

msix_config:
display_name: "NoPorts Desktop"
publisher_display_name: Atsign Inc
identity_name: TheCompany.NoPortsDesktop
publisher: CN=BBFE1D0B-F713-4C7F-B375-5EA851CBB1FF
msix_version: 1.1.3.0
logo_path: "assets/logo.png"
capabilities: internetClient
store: true

flutter_launcher_icons:
android: "launcher_icon"
ios: true
Expand Down

0 comments on commit 4f7ac8a

Please sign in to comment.