bashtube/webroot/unsubscribe.shs

11 lines
309 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash
2021-02-18 01:18:06 +01:00
if session_verify "${cookies[sh_session]}" && [[ "${get_data[id]}" != '' ]]; then
name=$(session_get_username "${cookies[sh_session]}")
channel=$(sed -E 's/\r//g' <<< "${get_data[id]}")
sed -i "/^$name:$channel/d" storage/subscribed
fi
meta[redirect]='subscribe.shs'
source templates/head.sh