Skip to content

Commit 15961ae

Browse files
authored
Merge branch 'master' into bzsinger-attendees
2 parents 8a8cd62 + 132676b commit 15961ae

21 files changed

+781
-454
lines changed

RepresentsMe.xcodeproj/project.pbxproj

+1-13
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
165B7F64225BE16C0095D9E1 /* SignupAddressViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 165B7F63225BE16C0095D9E1 /* SignupAddressViewController.swift */; };
5454
166E6E2D227A2C19005F6B19 /* ExternalLinksSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 166E6E2C227A2C19005F6B19 /* ExternalLinksSettingsViewController.swift */; };
5555
166E6E35227A4663005F6B19 /* LocationMapViewPopoverViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 166E6E33227A4663005F6B19 /* LocationMapViewPopoverViewController.swift */; };
56-
166E6E36227A4663005F6B19 /* LocationMapViewPopoverViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 166E6E34227A4663005F6B19 /* LocationMapViewPopoverViewController.xib */; };
5756
1683D02F2253B6FF00350471 /* MapActionButtons.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1683D02E2253B6FF00350471 /* MapActionButtons.xib */; };
5857
1683D0312253B71F00350471 /* MapActionButtons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1683D0302253B71F00350471 /* MapActionButtons.swift */; };
5958
1683D0332253C17600350471 /* CustomSearchBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1683D0322253C17600350471 /* CustomSearchBar.swift */; };
@@ -169,7 +168,6 @@
169168
165B7F63225BE16C0095D9E1 /* SignupAddressViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignupAddressViewController.swift; sourceTree = "<group>"; };
170169
166E6E2C227A2C19005F6B19 /* ExternalLinksSettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExternalLinksSettingsViewController.swift; sourceTree = "<group>"; };
171170
166E6E33227A4663005F6B19 /* LocationMapViewPopoverViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationMapViewPopoverViewController.swift; sourceTree = "<group>"; };
172-
166E6E34227A4663005F6B19 /* LocationMapViewPopoverViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LocationMapViewPopoverViewController.xib; sourceTree = "<group>"; };
173171
1683D02E2253B6FF00350471 /* MapActionButtons.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MapActionButtons.xib; sourceTree = "<group>"; };
174172
1683D0302253B71F00350471 /* MapActionButtons.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MapActionButtons.swift; sourceTree = "<group>"; };
175173
1683D0322253C17600350471 /* CustomSearchBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomSearchBar.swift; sourceTree = "<group>"; };
@@ -409,15 +407,6 @@
409407
path = Entry;
410408
sourceTree = "<group>";
411409
};
412-
166E6E37227A4666005F6B19 /* Map Popover */ = {
413-
isa = PBXGroup;
414-
children = (
415-
166E6E33227A4663005F6B19 /* LocationMapViewPopoverViewController.swift */,
416-
166E6E34227A4663005F6B19 /* LocationMapViewPopoverViewController.xib */,
417-
);
418-
path = "Map Popover";
419-
sourceTree = "<group>";
420-
};
421410
16C72C30225FFC6500D43215 /* OfficialCardView */ = {
422411
isa = PBXGroup;
423412
children = (
@@ -544,7 +533,6 @@
544533
isa = PBXGroup;
545534
children = (
546535
13895F30225F8EAA00FE405D /* AppState.swift */,
547-
166E6E37227A4666005F6B19 /* Map Popover */,
548536
165B7F65225BE1800095D9E1 /* Entry */,
549537
13BD31B5223021F1000A6BEE /* TabBarViewController.swift */,
550538
16B6B2C522209D8100DB3A5B /* MapViewController.swift */,
@@ -592,6 +580,7 @@
592580
children = (
593581
13A4F616225F848A0023E150 /* OfficialDetailsViewController.swift */,
594582
3BE4383C2255347800EC049B /* OfficialContactViewController.swift */,
583+
166E6E33227A4663005F6B19 /* LocationMapViewPopoverViewController.swift */,
595584
);
596585
path = OfficialDetails;
597586
sourceTree = "<group>";
@@ -761,7 +750,6 @@
761750
13BD31BB223025FC000A6BEE /* Font Awesome 5 Brands-Regular-400.otf in Resources */,
762751
16C72C32225FFC7C00D43215 /* OfficialCardView.xib in Resources */,
763752
3B1EFD61221F06EC003176BF /* LaunchScreen.storyboard in Resources */,
764-
166E6E36227A4663005F6B19 /* LocationMapViewPopoverViewController.xib in Resources */,
765753
13BD31BA223025FC000A6BEE /* Font Awesome 5 Free-Regular-400.otf in Resources */,
766754
13BD31BC223025FC000A6BEE /* Font Awesome 5 Free-Solid-900.otf in Resources */,
767755
3B1EFD5E221F06EC003176BF /* Assets.xcassets in Resources */,

RepresentsMe/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
5454

5555
// MARK: - Remember Me
5656
// Log user out if Remember me not on
57-
if !Util.rememberMeEnabled {
57+
if !Util.rememberMeEnabled && !Util.biometricEnabled {
5858
UsersDatabase.shared.logoutUser { (error) in
5959
// Do nothing
6060
}

0 commit comments

Comments
 (0)