李昊 4 år sedan
förälder
incheckning
bf061aa4b5

+ 3 - 0
GxPress/Api/GxPress.Api/Startup.cs

@@ -1,3 +1,4 @@
+using System.Net.Http;
 using GxPress.Api.ServiceExtensions;
 using GxPress.Common.AppOptions;
 using GxPress.Common.Middleware;
@@ -105,8 +106,10 @@ namespace GxPress.Api
         // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
         public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
         {
+            var handler = new HttpClientHandler();
             if (env.IsDevelopment())
             {
+                handler.ServerCertificateCustomValidationCallback = delegate { return true; };
                 app.UseDeveloperExceptionPage();
             }
 

+ 1 - 1
GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -794,7 +794,7 @@ namespace GxPress.Repository.Implement
         }
         public async Task<IEnumerable<Entity.User>> GetAllUserIm()
         {
-            string sql = "SELECT * FROM tede_user where ImId =''";
+            string sql = "SELECT * FROM ccpph.tede_user where ImId is null or ImId=''";
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);
             var connection = database.GetConnection();