summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2021-01-14 22:41:27 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2021-01-14 22:41:27 +0300
commitf5f267fa764f53ef617bc9504c7ecb68b5d3d7ab (patch)
treef03cedbc6eb0930aa944db07450a81face7646bb /priv
parente3508988283a0902a7e330995a0c224811956bce (diff)
downloadpleroma-f5f267fa764f53ef617bc9504c7ecb68b5d3d7ab.tar.gz
pleroma-f5f267fa764f53ef617bc9504c7ecb68b5d3d7ab.zip
[#3213] Refactoring of HashtagsTableMigrator.
Diffstat (limited to 'priv')
-rw-r--r--priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs b/priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs
index 43d616705..bfac09f9e 100644
--- a/priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs
+++ b/priv/repo/migrations/20190711042021_create_safe_jsonb_set.exs
@@ -9,7 +9,7 @@ defmodule Pleroma.Repo.Migrations.CreateSafeJsonbSet do
begin
result := jsonb_set(target, path, coalesce(new_value, 'null'::jsonb), create_missing);
if result is NULL then
- raise 'jsonb_set tried to wipe the object, please report this incindent to Pleroma bug tracker. https://git.pleroma.social/pleroma/pleroma/issues/new';
+ raise 'jsonb_set tried to wipe the object, please report this incident to Pleroma bug tracker. https://git.pleroma.social/pleroma/pleroma/issues/new';
return target;
else
return result;