Skip to content

Commit 678028f

Browse files
author
gauffininteractive
committed
* Corrected issue #4
* Increased the RemoteAddress size for reports so that IPv6 addresses can be stored * Made sure that the site works when the root have no trailing slash * Fixed so that virtual paths are supported when redirecting to login page.
1 parent 011d08c commit 678028f

File tree

7 files changed

+178
-152
lines changed

7 files changed

+178
-152
lines changed

src/Server/OneTrueError.SqlServer/Database.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ BEGIN
119119
[CreatedAtUtc] DATETIME NOT NULL,
120120
[SolvedAtUtc] DATETIME NULL,
121121
[Title] NVARCHAR(100) NULL,
122-
[RemoteAddress] VARCHAR (20) NULL,
122+
[RemoteAddress] VARCHAR (45) NULL, --SEE http://stackoverflow.com/questions/166132/maximum-length-of-the-textual-representation-of-an-ipv6-address
123123
[Exception] NTEXT NOT NULL,
124124
[ContextInfo] NTEXT NOT NULL
125125
);

src/Server/OneTrueError.Web/Areas/Installation/Controllers/AccountController.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Threading.Tasks;
33
using System.Web.Mvc;
44
using Griffin.Data;
5+
using OneTrueError.Api.Core.Applications.Queries;
56
using OneTrueError.App.Core.Accounts;
67
using OneTrueError.App.Core.Users;
78
using OneTrueError.Infrastructure;

0 commit comments

Comments
 (0)