summaryrefslogtreecommitdiffstats
path: root/api/channel.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/channel.go')
-rw-r--r--api/channel.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/api/channel.go b/api/channel.go
index 33e083f14..a5d42f151 100644
--- a/api/channel.go
+++ b/api/channel.go
@@ -753,16 +753,6 @@ func autocompleteChannels(c *Context, w http.ResponseWriter, r *http.Request) {
func viewChannel(c *Context, w http.ResponseWriter, r *http.Request) {
view := model.ChannelViewFromJson(r.Body)
- if err := app.SetActiveChannel(c.Session.UserId, view.ChannelId); err != nil {
- c.Err = err
- return
- }
-
- if len(view.ChannelId) == 0 {
- ReturnStatusOK(w)
- return
- }
-
if err := app.ViewChannel(view, c.TeamId, c.Session.UserId, !c.Session.IsMobileApp()); err != nil {
c.Err = err
return