Skip to content

Commit

Permalink
Fix object not found (#57)
Browse files Browse the repository at this point in the history
* fix object not found

* change app name
  • Loading branch information
cp-sidhdhi-p committed Jun 24, 2024
1 parent c32b22a commit d859914
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/terms-and-condition.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ These Terms constitute the entire agreement between you and Canopas regarding yo

These Terms and Conditions will be governed by and construed in accordance with the laws of India, without regard to its conflict of law provisions.

This clarifies that Indian law applies to any disputes arising from the use of the Cloud Gallery app developed by Canopas Software LLP.
This clarifies that Indian law applies to any disputes arising from the use of the Khelo app developed by Canopas Software LLP.

#### 9. Changes to the Terms

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ class ContactSupportViewStateNotifier
);
}

void _uploadAttachments({required String path, required String name}) async {
Future<void> _uploadAttachments({
required String path,
required String name,
}) async {
try {
state = state.copyWith(attachments: [
...state.attachments,
Expand Down Expand Up @@ -100,7 +103,7 @@ class ContactSupportViewStateNotifier

String _generateImageFilename() {
DateTime now = DateTime.now();
return "IMG_${now.year}${now.month}${now.day}${now.hour}${now.minute}${now.second}${now.millisecond}";
return "IMG_${now.year}${now.month}${now.day}${now.hour}${now.minute}${now.second}${now.millisecond}${now.microsecond}";
}

void pickAttachments() async {
Expand Down

0 comments on commit d859914

Please sign in to comment.