Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EncryptedLocalStore database access error snippely #31

Open
GoogleCodeExporter opened this issue Apr 3, 2015 · 4 comments
Open

EncryptedLocalStore database access error snippely #31

GoogleCodeExporter opened this issue Apr 3, 2015 · 4 comments

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?
1. Open Snippely
2. Error screen pops up
3. (First time I have tried it and this is as far as I get.)

What is the expected output? What do you see instead?
The beginning of the app. I see the window for the app but cannot add
groups or do anything. The menu TO add a group does work however. When you
click add group nothing happens.

What version of the product are you using? On what operating system?
Both 1.0 and 1.1

Please provide any additional information below.
Running ubuntu 9.04 Jaunty 32bit. Attached is the screenshot showing the
expanded output of the console. I also have open the relevant section of
art.air.js according to the console. Line 156 'application:storage'


Original issue reported on code.google.com by [email protected] on 10 Sep 2009 at 8:37

Attachments:

@GoogleCodeExporter
Copy link
Author

I am getting the exact error message as above. running opensuse 11.1(kde) 
snippely 1.1

Original comment by [email protected] on 21 Oct 2009 at 4:27

Attachments:

@GoogleCodeExporter
Copy link
Author

This happens to me on OS X if I modify the contents of the .app

Original comment by [email protected] on 7 Apr 2010 at 7:56

@GoogleCodeExporter
Copy link
Author

Having the same issue after starting snippely for the first time. Adobe Air 
Introspector opens and outputs a EncryptedLocalStore database access error.

I'm running Mac OS X 10.6.4 on a Mac Mini. Adobe Air is up to date as well.

Original comment by [email protected] on 6 Nov 2010 at 6:48

@GoogleCodeExporter
Copy link
Author

Somehow the application.storage is not returning the storage information. This 
is very hackish but you can remedy the situation with a try/catch on 
art.air.js. Under ART.Storage retrieve should look like:

retrieve: function(key){
        try {
            var stored = AIR.EncryptedLocalStore.getItem('application:storage');
                    }  catch (err) {
                        //alert(err.description);
                    }
        var data = (stored && stored.length) ? JSON.decode(stored.readUTFBytes(stored.length)) : null;
        if (data) return (data[key] != undefined) ? data[key] : null;
    }

};

Original comment by [email protected] on 11 Feb 2011 at 6:06

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant