()
| 132 | } |
| 133 | |
| 134 | func (s *SiteAdvancedResp) GetMaxImageSize() int64 { |
| 135 | if s.MaxImageSize <= 0 { |
| 136 | return constant.DefaultMaxImageSize |
| 137 | } |
| 138 | return int64(s.MaxImageSize) * 1024 * 1024 |
| 139 | } |
| 140 | |
| 141 | func (s *SiteAdvancedResp) GetMaxAttachmentSize() int64 { |
| 142 | if s.MaxAttachmentSize <= 0 { |
no outgoing calls
no test coverage detected