diff --git a/Builder/IISMainHandler/build.txt b/Builder/IISMainHandler/build.txt index 44c590d..377ce3c 100644 --- a/Builder/IISMainHandler/build.txt +++ b/Builder/IISMainHandler/build.txt @@ -1 +1 @@ -1658 \ No newline at end of file +1660 \ No newline at end of file diff --git a/IISMainHandler/handlers/request/MarkThreadAsReadHandler.cs b/IISMainHandler/handlers/request/MarkThreadAsReadHandler.cs index 53b5951..1cafe33 100644 --- a/IISMainHandler/handlers/request/MarkThreadAsReadHandler.cs +++ b/IISMainHandler/handlers/request/MarkThreadAsReadHandler.cs @@ -23,7 +23,7 @@ namespace FLocal.IISHandler.handlers.request { if(!requestParts[3].StartsWith("p")) throw new WrongUrlException(); //throw new CriticalException("wrong url"); Post post = Post.LoadById(int.Parse(requestParts[3].PHPSubstring(1))); - if(post.thread.id != thread.id) throw new CriticalException("id mismatch"); + //if(post.thread.id != thread.id) throw new CriticalException("id mismatch"); thread.forceMarkAsRead(account, post); }