mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Bump lib/serialize from 130ffc3
to 7d37cbf
(#2418)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
This commit is contained in:
parent
7d9f4c2b0c
commit
277289db55
|
@ -1 +1 @@
|
|||
Subproject commit 130ffc3ec722284ca454a1e70c5478a75f380144
|
||||
Subproject commit 7d37cbfd5ac3bfbe046118e1cec3d32ba4696469
|
|
@ -102,10 +102,12 @@ struct Serialize<chatterino::FilterRecordPtr> {
|
|||
|
||||
template <>
|
||||
struct Deserialize<chatterino::FilterRecordPtr> {
|
||||
static chatterino::FilterRecordPtr get(const rapidjson::Value &value)
|
||||
static chatterino::FilterRecordPtr get(const rapidjson::Value &value,
|
||||
bool *error = nullptr)
|
||||
{
|
||||
if (!value.IsObject())
|
||||
{
|
||||
PAJLADA_REPORT_ERROR(error)
|
||||
return std::make_shared<chatterino::FilterRecord>(QString(),
|
||||
QString());
|
||||
}
|
||||
|
|
|
@ -85,13 +85,15 @@ struct Serialize<chatterino::HighlightBlacklistUser> {
|
|||
|
||||
template <>
|
||||
struct Deserialize<chatterino::HighlightBlacklistUser> {
|
||||
static chatterino::HighlightBlacklistUser get(const rapidjson::Value &value)
|
||||
static chatterino::HighlightBlacklistUser get(const rapidjson::Value &value,
|
||||
bool *error = nullptr)
|
||||
{
|
||||
QString pattern;
|
||||
bool isRegex = false;
|
||||
|
||||
if (!value.IsObject())
|
||||
{
|
||||
PAJLADA_REPORT_ERROR(error)
|
||||
return chatterino::HighlightBlacklistUser(pattern, isRegex);
|
||||
}
|
||||
|
||||
|
|
|
@ -130,10 +130,13 @@ struct Serialize<chatterino::HighlightPhrase> {
|
|||
|
||||
template <>
|
||||
struct Deserialize<chatterino::HighlightPhrase> {
|
||||
static chatterino::HighlightPhrase get(const rapidjson::Value &value)
|
||||
static chatterino::HighlightPhrase get(const rapidjson::Value &value,
|
||||
bool *error = nullptr)
|
||||
{
|
||||
if (!value.IsObject())
|
||||
{
|
||||
PAJLADA_REPORT_ERROR(error)
|
||||
|
||||
return constructError();
|
||||
}
|
||||
|
||||
|
|
|
@ -157,10 +157,12 @@ struct Serialize<chatterino::IgnorePhrase> {
|
|||
|
||||
template <>
|
||||
struct Deserialize<chatterino::IgnorePhrase> {
|
||||
static chatterino::IgnorePhrase get(const rapidjson::Value &value)
|
||||
static chatterino::IgnorePhrase get(const rapidjson::Value &value,
|
||||
bool *error = nullptr)
|
||||
{
|
||||
if (!value.IsObject())
|
||||
{
|
||||
PAJLADA_REPORT_ERROR(error)
|
||||
return chatterino::IgnorePhrase(
|
||||
QString(), false, false,
|
||||
::chatterino::getSettings()->ignoredPhraseReplace.getValue(),
|
||||
|
|
|
@ -51,10 +51,12 @@ struct Serialize<chatterino::ModerationAction> {
|
|||
|
||||
template <>
|
||||
struct Deserialize<chatterino::ModerationAction> {
|
||||
static chatterino::ModerationAction get(const rapidjson::Value &value)
|
||||
static chatterino::ModerationAction get(const rapidjson::Value &value,
|
||||
bool *error = nullptr)
|
||||
{
|
||||
if (!value.IsObject())
|
||||
{
|
||||
PAJLADA_REPORT_ERROR(error)
|
||||
return chatterino::ModerationAction(QString());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue