-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ abstruct class
BaseUser
to extract fields (Display)?Name
from e…
…ntity class `User` * fix false positive of signature existence due to `WHERE signatureId IN (s1, s2) AND xxHash3 IN (x1, x2)` is not equality with `WHERE (signatureId = x1 AND xxHash3 = x1) OR (signatureId = x2 AND xxHash3 = x2)` @ `ReplySignatureSaver.Save()` * fix username of historical anonymous user won't get fallbacked to null when it's emtpy string @ `UserParser.Parse()` * fix outdated comments since a0f48f3 @ `UserSaver.ShouldIgnoreEntityRevision()` @ fe
- Loading branch information
Showing
7 changed files
with
23 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace tbm.Crawler.Db; | ||
|
||
public abstract class BaseUser : TimestampedEntity | ||
{ | ||
public string? Name { get; set; } | ||
public string? DisplayName { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters