瀏覽代碼

pleroma_ctl: Fix attempting to use RPC for config generation

tags/v1.1.4
rinpatch 4 年之前
父節點
當前提交
59d447d555
共有 2 個文件被更改,包括 6 次插入2 次删除
  1. +4
    -0
      CHANGELOG.md
  2. +2
    -2
      rel/files/bin/pleroma_ctl

+ 4
- 0
CHANGELOG.md 查看文件

@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [1.1.2] - 2019-10-18
### Fixed
- `pleroma_ctl` trying to connect to a running instance when generating the config, which of course doesn't exist.

## [1.1.1] - 2019-10-18
### Fixed
- One of the migrations between 1.0.0 and 1.1.0 wiping user info of the relay user because of unexpected behavior of postgresql's `jsonb_set`, resulting in inability to post in the default configuration. If you were affected, please run the following query in postgres console, the relay user will be recreated automatically:


+ 2
- 2
rel/files/bin/pleroma_ctl 查看文件

@@ -141,8 +141,8 @@ else

ACTION="$1"
shift
if [ "$(echo \"$1\" | grep \"^-\" >/dev/null)" = false ]; then
echo "$1" | grep "^-" >/dev/null
if [ $? -eq 1 ]; then
SUBACTION="$1"
shift
fi


Loading…
取消
儲存