Ignore:
Timestamp:
04/05/19 10:25:31 (5 years ago)
Author:
bln4
Message:

When loading in messages from the mail databases now uses the timestamp last-accessed companion file to only load in new ones.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/FrameIO.java

    r1280 r1283  
    5050import org.expeditee.agents.ExistingFramesetException;
    5151import org.expeditee.agents.InvalidFramesetNameException;
    52 import org.expeditee.auth.Authenticator;
     52import org.expeditee.auth.AuthenticatorBrowser;
    5353import org.expeditee.auth.EncryptedExpReader;
    5454import org.expeditee.auth.EncryptedExpWriter;
     
    375375                        List<String> directoriesToSearch = FolderSettings.FrameDirs.getAbsoluteDirs();
    376376                       
    377                         if (Authenticator.Authenticated) {
     377                        if (AuthenticatorBrowser.Authenticated) {
    378378                                // if we are running Expeditee Authenticated, consult user profile as location for framesets first
    379379                                String profilePath = FrameIO.PROFILE_PATH + UserSettings.UserName.get() + File.separator;
     
    11021102                        // if its a new frame or an existing Exp frame...
    11031103                        if (fullPath == null || fullPath.endsWith(ExpReader.EXTENTION)) {                               
    1104                                 if (toSave.getNumber() != Authenticator.CREDENTIALS_FRAME &&
     1104                                if (toSave.getNumber() != AuthenticatorBrowser.CREDENTIALS_FRAME &&
    11051105                                                toSave.getEncryptionLabel() != null) {
    11061106                                        writer = new EncryptedExpWriter(toSave.getEncryptionLabel());
Note: See TracChangeset for help on using the changeset viewer.